byStarTW says to YSITD# coding: utf-8 import locale locale.setlocale(locale.LC_CTYPE, 'chinese') import time import os count = 0 while 3>0: print ("現在是 " + time.strftime("%Y 年 %m 月 %d 日 %H 時 %M 分 %S 秒")) time.sleep (2) if os.name == "nt": os.system('cls') else: os.system('clear') count = count+1 print ("結束")at Wed, Aug 23, 2017 7:22 PM