+ 1
Storing user input in python
How do I store user input? This doesn’t work because it erases inp each time inp=[] inp.append(input("")) print (inp)
2 Respostas
+ 5
You can store the input in a file:
https://code.sololearn.com/ccLLrPSie1E6/?ref=app
+ 1
ok thanks!