“Biblioteka czasu Python” Kod odpowiedzi

Zegar Pythona

# Here is a self updating clock function, just run it and it'll self update itself until you hit CTRL-C
import datetime
import time
def clock():
    while True:
        print(datetime.datetime.now().strftime("%H:%M:%S"), end="\r")
        time.sleep(1)

clock()
Random boi

Biblioteka czasu Python

#also see datetime
import time
now = time.time()
print(now)
Dr. Hippo

Python Time

#!/usr/bin/python
import time

t = (2009, 2, 17, 17, 3, 38, 1, 48, 0)
t = time.mktime(t)
print time.strftime("%b %d %Y %H:%M:%S", time.gmtime(t))
Crowded Crab

Python Time

#!/usr/bin/python
import time

t = (2009, 2, 17, 17, 3, 38, 1, 48, 0)
t = time.mktime(t)
print time.strftime("%b %d %Y %H:%M:%S", time.gmtime(t))

OUTPUT:Feb 18 2009 00:03:38
Nilendu Ganguli

Odpowiedzi podobne do “Biblioteka czasu Python”

Pytania podobne do “Biblioteka czasu Python”

Więcej pokrewnych odpowiedzi na “Biblioteka czasu Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu