Guest User

Untitled

a guest
May 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #To have first letter of first name and last name in Capital and other letters in lowercase
  2. First_name=input("Enter your first name:")
  3. Last_name=input("Enter your last name:")
  4. print("Welcome to Python Mr." +First_name.capitalize() + " " + Last_name.capitalize())
Add Comment
Please, Sign In to add comment