Advertisement
Spocoman

01. Concat Names

Jan 17th, 2022
103
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. delimiter = input()
  4.  
  5. print(f'{first_name}{delimiter}{last_name}')
  6. # print(first_name + delimiter + last_name)
  7.  
  8.  
  9.  
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement