90K subscribers
87 photos
13 videos
6 files
161 links
Python.hub
Download Telegram
import turtle
import colorsys

t = turtle.Turtle()
s = turtle.Screen().bgcolor('black')
t.speed(0)
n = 70
h = 0
for i in range (360):
c = colorsys.hsv_to_rgb(h, 1, 0.8)
h+= 1/n
t.color(c)
t.left(1)
t.fd(1)
for j in range (2):
t.left(2)
t.circle(100)
Draw Rocky Bhai Using Python
👇👇
Drawing Beautiful Design Using Python
👇👇
KBC Quiz game Using Python
👇👇
Drawing Beautiful Design Using Python
👇👇
# Defined function
from turtle import *
import turtle as t

def my_turtle():
# Choices
sides = str(3)
loops = str(450)
pen = 1
# Loop
for i in range(int(loops)):
forward(i * 2/int(sides) + i)
left(360/int(sides) + .350)
hideturtle()
pensize(pen)
speed(30)
left(90)


my_turtle()
t.done()
Drawing Beautiful Design Using Python
👇👇
from turtle import *
import turtle as t

def my_turtle():
# Choices
sides = str(3)
loops = str(450)
pen = 1
for i in range(int(loops)):
forward(i * 2/int(sides) + i)
left(360/int(sides) + .350)
hideturtle()
pensize(pen)
speed(30)

my_turtle()
t.done()
Drawing Beautiful Design Using Python
👇👇
Drawing IronMan face using Python 👇👇
Drawing Spiderman face using Python 👇👇
Drawing Radha Krishna using Python 👇👇