Heim  >  Fragen und Antworten  >  Hauptteil

Python – Problem mit der Datums-/Uhrzeitausgabe

1Lernen Sie die Grundlagen von PYTHON auf der Codecademy und lernen Sie Datetime

Führen Sie den Code aus:

from datetime import datetime
now=datetime.now()
#print now
print now.year
print now.month
print now.day
print now.time"

输出的问题是:  年 月 日 都没问题 就是 时间那里 不知道是啥意思。

'''2017
5
15
<built-in method time of datetime.datetime object at 0x7f7bd75f7f30>
None
ringa_leeringa_lee2735 Tage vor962

Antworte allen(2)Ich werde antworten

  • PHPz

    PHPz2017-05-18 10:48:51

    from datetime import datetime
    now=datetime.now()
    #print now
    print now.year
    print now.month
    print now.day
    print now.hour
    print now.minute
    print now.second
    print now.microsecond

    没有time属性

    print now.date()
    print now.time()
    print now.timetuple()
    print now.ctime()

    Antwort
    0
  • 習慣沉默

    習慣沉默2017-05-18 10:48:51

    print now.tiem()

    Antwort
    0
  • StornierenAntwort