HristoBaychev

Concatenate Data

Jan 22nd, 2023
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. first_name = input()
  2. last_name = input()
  3. age = int(input())
  4. town = input()
  5.  
  6. print(f'You are {first_name} {last_name}, a {age}-years old person from {town}.')
Add Comment
Please, Sign In to add comment