4 lines
73 B
Python
4 lines
73 B
Python
from time import gmtime, strftime
|
|
|
|
print(strftime("%H:%M:%S", gmtime()))
|