90K subscribers
87 photos
13 videos
6 files
161 links
Python.hub
Download Telegram
More than 200 people already registered, Don't miss out your chance
Link 👇👇👇
You started learning programming with ?
Anonymous Poll
27%
C/C++
10%
Java
61%
Python
3%
Javascript
More than 200 people already registered, Don't miss out your chance
import turtle as tur
import colorsys as cs
tur.setup(800,800)
tur.speed(0)
tur.width(2)
tur.bgcolor("black")
for j in range(25):
for i in range(15):
tur.color(cs.hsv_to_rgb(i/15, j/25,1))
tur.right(90)
tur.circle(200-j*4,90)
tur.left(90)
tur.circle(200-j*4,90)
tur.right(180)
tur.circle(50,24)
tur.hideturtle()
tur.done()