Guest User

Untitled

a guest
May 17th, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. '''' this program is about taking user input
  2. as name and wish hello follwed by his name'''
  3.  
  4. def get_user_name():
  5. name = input("Enter your name")
  6. return name # here we r returning the value
  7.  
  8. def say_hello(msg):
  9. greet = "HELLO"
  10. print (greet,msg)
  11.  
  12. def main(): # we are calling on function in another function
  13. user = get_user_name()
  14. say_hello(user)
  15.  
  16. main()
Add Comment
Please, Sign In to add comment