182days

Variable Joiner

May 10th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #joining 2 variables
  2. x=input("what is your first name?")
  3. y=input("what is your last name?")
  4. print("your full name is...",(str(x)+" "+(y)))
Add Comment
Please, Sign In to add comment