なぜ私のPythonクロックはPython2からしか動かないのですが、Python3は何もしません。バックスペースの問題
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)
実際には、これはPython 2.xでも必要です(少なくともprint関数を使用している場合)。 –
私のシステムでは、これがなければPython 2でも動作しません。 –
私のシステム(Windows 7 x64)では、Python 2.7ではこれがなくても動作します。 –