Hi, I am a beginner at using Python,
I am trying to request input from the user via stdin as a string, but record the time it takes for the user to enter the input, so that it may be played back later.
For example:
"It could take me 10 seconds to type this sentence"
and then if I played that sentence back it would take the same amount of time to redisplay it...
Any basic ideas on which modules to use for timing / input? For output, I am just going to store all the recorded values and times in a dictionary object and read from them. (Seems to be the best way...)
Any guidance or help would be appreciated. I am not a beginner programmer, but just very new to Python, so don't feel like you have to write anything out for me.
Thanks!