I\'m running python 2.7 on 64-bit Windows 7.
Here is the code i\'m executing:
import sys while True: print \'please enter a character:\' c = sys.
Problem is probably due to flushing of stdin since the \n lingers on.
\n
as an alternative, use raw_input
while True: c = raw_input('please enter a character: ') print 'you entered', c
For the flushing part, see this