Warum diese Python-Uhr nur von Python2 läuft, tut Python3 nichts.Backspace Problem
from __future__ import print_function
import time
wipe = '\b'*len(time.asctime())
print("The current date and time are: "+' '*len(wipe), end='')
while True:
print(wipe+time.asctime(), end='')
time.sleep(1)
Eigentlich sollte dies auch für Python 2.x notwendig sein (zumindest bei Verwendung der Druckfunktion). –
Auf meinem System funktioniert es auch ohne Python 2 nicht. –
Auf meinem System (Windows 7 x64) funktioniert das ohne Python 2.7. –