Python Coding
7.45K subscribers
1.52K photos
4 videos
49 files
1.39K links
Learn Python to automate your things. We are here to support you. Ask your question

Reach us - info@clcoding.com

https://whatsapp.com/channel/0029Va5BbiT9xVJXygonSX0G
Download Telegram
#clcoding
import turtle

t = turtle.Turtle()
t.speed(20)
a = ["violet","indigo","blue","green","yellow","orange","red"]

for i in range(50):
k = i%7
t.color(a[k])
t.circle(120)
t.right(10)
#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)
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!
Forwarded from New Technology
Day 5: HOW TO EXPORT DATAFRAME https://fb.watch/6Ecd61Dbzk/
Python Projects