DAY 5 of PYTHON top 100 questions : from Basic to Advanced !!
Write a Python program to reverse a given string:- str=input("Enter the string : ") print('THE REVERSE OF THE STRING IS :- ',str[::-1]) Output : Enter the string : PRIYA THE REVERSE OF THE STRING IS :- AYIRP This is a Python code that takes a s...
Apr 21, 20231 min read19

