因此,使用該網站,我想出了下面的代碼:顯示時間
import time
print(time.strftime('%l:%M%p %Z on %b %d %Y'))
#' 1:36PM EDT on Oct 18, 2010'
print("time done")
time.sleep(5)
出於某種原因,不過,這個代碼不工作。
我試圖讓時間顯示類似的評論,但如果我可以得到秒,以及這將是好事。 我也試過這個:
import time
print time.strftime("%l"+":"+"%M"+"%p"+ "%Z"+ "%b"+ "%d"+ "%Y")
#' 1:36PM EDT on Oct 18, 2010'
print("time done")
time.sleep(5)
但它也不起作用。
編輯:錯誤,我從print(time.strftime('%l:%M:%S%p %Z on %b %d, %Y'))
報復:
AttributeError: '<invalid type>' object has no attribute 'strftime'
EDIT2:對於那些不相信我:在CodeSkulptor該錯誤以及代碼https://www.dropbox.com/s/joyxsod8yv899fm/THERE.png
我用python的3.3.3和codeskulptor
連接組件依然構建完全相同的字符串格式,因此使得* no *不同。 –
你的錯誤將*不*有'<無效類型>'那裏;它將是'AttributeError:'str'對象沒有屬性'strftime'或'AttributeError:'builtin_function_or_method'對象沒有屬性'strftime'或類似的。你很可能會把時間反彈到別的東西上。 –