create empty function python

Solutions on MaxInterview for create empty function python by the best coders in the world

showing results for - "create empty function python"
Gwyneth
11 Jan 2017
1# Correct way of writing empty function 
2# in Python
3def fun(): 
4    pass
5