可能重複:
I'm new to python, I can't tell if this will work or not我不知道這段代碼有什麼問題嗎?
import time
from sys import stdout
varthing = 1
while varthing == 1:
time.sleep(1)
checker = time.strftime("\r%b, %d %H:%M:%S", time.localtime())
print checker,
stdout.flush()
if checker == "Dec, 25 00:00:00" :
print "It's Christmas"
raw_input("Enter anything to close\n")
varthing = 0
我看不出有什麼不妥。這是聖誕節時通知你的時鐘。
你有什麼期望發生,而是發生了什麼? –
什麼也沒有發生,它只是計數,當它達到指定的日期時,什麼都不會發生。 – user1080694