91.2K subscribers
87 photos
13 videos
6 files
161 links
Python.hub
Download Telegram
Want to earn money with python?
Anonymous Poll
80%
Yes 😍
20%
How 🤔?
Want Tips On How 🤔 To Get Python Job ?
Anonymous Poll
96%
Yes please 🙏
4%
No, I am already working 😒
You Want Free 😋 Python Course? 🔥
Anonymous Poll
96%
Yes please 🙏 😍
4%
No 😔
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 😔