I would like to save a log of what other users type into my app. (Python)
text=input()
with open("log.txt","a") as f:
f.write(text+"\n)
Unfortunately it is not that simple, and doesn’t store other users inputs, and I would like to know what the most beginner friendly way of doing this is.