Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def greeting(name,age,username):
  2. print('your name is ' +name + ', you are ' + age + ' years old, and your username is ' + username)
  3.  
  4. name = input("What's your name?\n")
  5. age = input("How old are you?\n")
  6. username = input("What is your username?\n")
  7. greeting(name,age,username)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement