7 lines
78 B
Python
7 lines
78 B
Python
import time
|
|
|
|
def main():
|
|
timed = time.localtime()
|
|
print(timed)
|
|
|
|
main() |