“Zegar Pythona” 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

Odpowiedzi podobne do “Zegar Pythona”

Pytania podobne do “Zegar Pythona”

Więcej pokrewnych odpowiedzi na “Zegar Pythona” w Python

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

Przeglądaj inne języki kodu