simeonshopov

Chars to String

Nov 25th, 2019
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. a = input()
  2. b = input()
  3. c = input()
  4.  
  5.  
  6. def to_string(i, j, z):
  7.   string = f'{i}{j}{z}'
  8.   print(string)
  9.  
  10.  
  11. to_string(a, b, c)
Advertisement
Add Comment
Please, Sign In to add comment