44.py 1 2 3 4 5 6 7text = input("Enter A String : ") reversed_text = "" for char in text: reversed_text = char + reversed_text print(reversed_text)