Advertisement
Cobble5tone

Educational use of function

Aug 26th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. def greet_user(name):
  2.     print("Welcome " + name)
  3.  
  4. user_name = input("What is your name?")
  5.  
  6. greet_user(user_name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement