50.py 1 2 3 4 5 6 7 8text = input("Enter A String : ") result = "" for char in text: if char != " ": result += char print(result)