90K subscribers
87 photos
13 videos
6 files
161 links
Python.hub
Download Telegram
Free Python Courses From Google 👇👇👇

.

https://copyassignment.com/the-7-best-free-python-courses-in-2022/


.
.
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)
👆👆👆
Run this code and send output screenshot here
from turtle import *

speed(0)
bgcolor('black')
color('orange')
hideturtle()

n = 1
p = True

while True:
circle(n)
if p:
n = n - 1
else:
n = n + 1

if n == 0 or n == 60:
p = not p

left(1)
forward(3)

done()
Run this Code and send output screenshot
Want to know how to get Python Internship?🤔
Anonymous Poll
92%
Yes 🙏
8%
No 😔
import turtle
a=turtle.Turtle()
a.getscreen().bgcolor("black")
a.penup()
a.goto(-200, 100)
a.pendown()
a.color("yellow")
a.speed(25)
def star(turtle, size):
if size<=10:
return
else:
turtle.begin_fill()
for i in range (5):
turtle.pensize(2)
turtle.forward(size)
star(turtle, size/3)
turtle.left(216)
turtle.end_fill()
star(a, 360)
turtle.done()
Run this Code and send output screenshot
Want free Python Certification Course? 🤔
Anonymous Poll
97%
Yes 🙏
3%
No
Hello, Everyone
Want to know about Top Websites to learn Python for Free? 🤔
Anonymous Poll
92%
Yes 🙏
8%
No 😔