#DIGITAL CLOCK IN PYTHON
#clcoding
from datetime import datetime
from time import sleep
while 1:
n=datetime.now()
print(datetime.strftime(n,"%H:%M:%S"), end='\r')
sleep(1)
#clcoding
from datetime import datetime
from time import sleep
while 1:
n=datetime.now()
print(datetime.strftime(n,"%H:%M:%S"), end='\r')
sleep(1)
https://tidd.ly/34i24ea Free !! Python Basics for Data Science
This Python course provides a beginner-friendly introduction to Python for Data Science. Practice through lab exercises, and you'll be ready to create your first Python scripts on your own!
This Python course provides a beginner-friendly introduction to Python for Data Science. Practice through lab exercises, and you'll be ready to create your first Python scripts on your own!