I have code like:
While 1:
A = input()
print A
How long can I expect this to run? How many times?
Is there a way I can just throw away whatever I have in A once I have printed it?
How does python deal with it? Will the program crash after a while?
Thank you.