You are on page 1of 2

Practice Set 5

1.Write a one line code which give the output in the given format

Sample Input: it's raining and i will enjoy the rain


Sample Output : It's raining
and i will enjoy the rain

2.Write a code to get the input in the given format and print the output in the given
format
Sample Input: I,Love
Python
Sample Output : I_Love#Python

3.Write a code to get the input in the given format and print the output in the given
format
Input Description:Three integers are given in line by line.
Output Description:Print the integers in a single line separate by space.
Sample Input :
2
4
5
Sample Output :
245

4.Write a code to get the input in the given format and print the output in the given
format
Input Description:A single line contains integers separated by space
Output Description:Print the integer list of integers separated by space
Sample Input :
234
Sample Output :
234

5.Write a code to get the input in the given format and print the output in the given
format
Input Description:Three integers are given single line.
Output Description:Print the integers in a list.
Sample Input :
245
Sample Output :
[2, 4, 5]
Solution Link:

Prepared By: Pragati Gupta


TechnicalTrainer(Galgotias University)
YouTuber(Catch The Code)

You might also like