#day5
Read more stories on Hashnode
Articles with this tag
Write a Python program to reverse a given string:- str=input("Enter the string : ") print('THE REVERSE OF THE STRING IS :- ',str[::-1]) Output...
Day 5 String : The string is an in-built data structure in python, which is an immutable data type, that is a sequential collection of...