python how to call a defined function code example
Example: python functions
#Functions
def string():
print('This is a function')
print(string())
#Functions
def string():
print('This is a function')
print(string())