Beginner in Python here. I'd like the option to pause at a line of code and wait for ANY button to be pressed (not just enter) and immediately continue to a new line.
I've looked everywhere online and all I can see is:
input('Press ENTER to continue...')
which is NOT what I want to do.
I'd like a line that says:
Press any key to continue...
and if i press solely the 'f' key (for example) then it proceeds to a new line.
Thanks.