Hello,
I want to show 3 words at a time from a textfile or pdf. At a specified rate (select time 1/10 to 300 sec). A GUI based display
The speed of display and the pause / resume buttons are a problem. Could you help with this? thanks
I want to show 3 words at a time from a textfile or pdf. At a specified rate (select time 1/10 to 300 sec). A GUI based display
Code:
f = open("demofile.txt", "r") for x in f: print(x) input() f.close()
Comment