programming-examples/python/Date/Python program to get the current time.py

2 lines
56 B
Python
Raw Normal View History

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