top of page
Search

how to make a simple clock using python

import time while True: from datetime import datetime now = datetime.now() print ("%s/%s/%s %s:%s:%s" % (now.month,now.day,now.year,now.hour,now.minute,now.second)) time.sleep(1) you can see the output in the pics


 
 
 

Recent Posts

See All

Comentarios


Subscribe Form

©2020 by LinuxTech. Proudly created with Wix.com

bottom of page