0
I can’t type in terminal when I run my code in the app
4 Antworten
+ 2
And when you click run, doesn't a box appear to write something in?
+ 1
Can you provide some more information? (Maybe attach the code and explain what you want)
Sololearn supports input but in everything other than Web codes, you have to do all your input at the beginning, after you've hit run. Each input has to be on a new line.
0
print("**********TEXT REVERSER**********")
txt = []
while True:
txt = input("Enter any word or jumble of letters and reverse it here: ")
if txt == (''):
break
print(txt[::-1])
0
Correct