Set 101 Practical Question

⭐ Q1. स्ट्रिंग को उल्टा (Reverse) प्रिंट करना

Example Code (Read Only):


s = input("Enter any string which you want to reverse: ")
print(s[::-1])

Python Online Editor