Python Hub
20K subscribers
80 photos
6 videos
14 files
207 links
πŸ’¬admin @LinuxTeachπŸ’¬
πŸ‘‡ Free access to πŸ‘‡
1. Python Developer courses and Jobs
2. Machine Learning courses and Jobs
3. Direct Internship opportunities
4. Python free courses
πŸ‘‡ Python Handwritten Notes πŸ‘‡
https://linktr.ee/python.hub
Download Telegram
Forwarded from PythonHub
Want to earn money with python?
Anonymous Poll
80%
Yes 😍
20%
How πŸ€”?
Forwarded from PythonHub
Want Tips On How πŸ€” To Get Python Job ?
Anonymous Poll
96%
Yes please πŸ™
4%
No, I am already working πŸ˜’
Forwarded from PythonHub
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
Forwarded from PythonHub
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()