Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- """
- Data Types and Variables - Exercise
- Check your code: https://judge.softuni.bg/Contests/Practice/Index/1722#1
- SUPyF2 D.Types and Vars Exercise - 02. Chars to String
- Problem:
- Write a function that receives 3 characters. Combine all the characters into one string and print it on the console.
- Examples:
- Input: Output:
- a
- b
- c abc
- %
- 2
- o %2o
- 1
- 5
- p 15p
- """
- print(f"{input()}{input()}{input()}")
Add Comment
Please, Sign In to add comment