programming-examples/python/Date/Display the date and time in a human-friendly string.py
2019-11-15 12:59:38 +01:00

4 lines
58 B
Python

import time
print()
print(time.ctime())
print()