Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
年と時の間にスペースを入れることはできず、「,」は使用できません。連結を使用しています。
from datetime import datetime now = datetime.now() print str(now.month) + "/" + str(now.day) + "/" + str(now.year), "+ "str(now.hour) + ":" + str(now.minute) + ":" + str(now.second)
now.strftime('%m/%d/%Y + %H:%M:%S')
「now = datetime.now()」の後にこのコマンドを入力すると、必要な出力が得られます。