programming-examples/python/Date/Display the date and time in a human-friendly string.py

4 lines
58 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import time
print()
print(time.ctime())
print()