Answers for "holding a function to the code in python"

0

holding a function to the code in python

def hello():
  name = str(input("Enter your name: "))
  if name:
    print ("Hello " + str(name))
  else:
    print("Hello World") 
  return 
  
hello()
Posted by: Guest on February-19-2021

Code answers related to "holding a function to the code in python"

Python Answers by Framework

Browse Popular Code Answers by Language