holding a function to the code in python

Solutions on MaxInterview for holding a function to the code in python by the best coders in the world

showing results for - "holding a function to the code in python"
Camilo
10 Aug 2017
1def hello():
2  name = str(input("Enter your name: "))
3  if name:
4    print ("Hello " + str(name))
5  else:
6    print("Hello World") 
7  return 
8  
9hello()
similar questions
queries leading to this page
holding a function to the code in python