Answers for "time library python"

3

python clock

# 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()
Posted by: Guest on July-23-2020
0

python - oordinated universal time

from datetime import datetime, timezone
print(datetime.now())              # timezone
print(datetime.now(timezone.utc))  # coordinated universal time
Posted by: Guest on August-13-2020
21

python time library

#also see datetime
import time
now = time.time()
print(now)
Posted by: Guest on February-21-2020
9

time module in python

import time
seconds = time.time()
print("Seconds since epoch =", seconds)
Posted by: Guest on July-30-2020
15

python time

import time
import datetime

print(time.time())
# 1586813438.419919

print(time.ctime())
# Mon Apr 13 23:30:38 2020

print(datetime.datetime.now())
# 2021-11-13 23:30:38.419951

print(datetime.date.today())
# 2021-11-13
Posted by: Guest on November-04-2021
2

time in python

import time
thistime = time.time()
# Here's an idea!
def CountTime():
  while(True):
    time.sleep(1)
    print(thistime)
CountTime()
Posted by: Guest on January-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language