# ChapterAnimation/clock.py """ what day is today? what time ? >>> 6 / 14 / 2017 11 : 38 """ import datetime def main(): myt = datetime.datetime.now() print(myt.month,'/',myt.day,'/',myt.year) print(myt.hour,':',myt.minute) main()