""" Combine both the date and the time with a space and separate the time digits with : and the date digits with /. The date must come before the time."""
from datetime import datetime
now = datetime.now()
print ('% mm/% dd/% yyyy' '% hh : % mm : ss') (now.month, now.day, now.year now.hour, now.minute, now.second)
好吧,我正在做的是試圖完成一個教訓,我一直堅持從www.codecademy.com和我在Python v2.7.9腳本。我不斷得到相同的錯誤,如下所示:我在這個腳本中做了什麼不正確?
File "python", line 9
print ('% mm/% dd/% yyyy' '% hh : % mm : ss') (now.month, now.day, now.year now.hour, now.minute, now.second)
SyntaxError: invalid syntax
我一直無法弄清楚什麼是錯的,以及我如何解決它。如果有人能幫助我,我將不勝感激。
它是否需要'now.year'和'now.hour'之間的逗號? – jmunsch
是的,這是缺少的。我實際上已經錯過了看到一個論壇,它告訴我大多數人都有這個問題,這是缺少的逗號。謝謝你!我幾乎沒有在這裏檢查過幾天,所以我現在剛剛看到這個。再次感謝! –