Python Hub
20.1K 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
Here is the Link πŸ‘‡πŸ‘‡πŸ‘‡
Want Microsoft's free Python Course?
Anonymous Poll
86%
Yes πŸ™
14%
Where is the Link πŸ”—
Want to know how much Love Babbar makes from his YouTube channel?
Anonymous Poll
72%
Yes
45%
How?
πŸ‘‡Test your Python skillsπŸ‘‡

https://copyassignment.com/web-stories/python-quiz-1/
Want free Python course with Certification?
Anonymous Poll
89%
Yes 😁
11%
Where is the Link ?
image_2023-11-04_13-13-31.png
193.1 KB
Code for this design
πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡
import turtle
import colorsys

turtle.bgcolor("black")
t = turtle.Turtle()
t.hideturtle()
turtle.tracer (50)
n=2
c=10

for i in range(1200):
p = colorsys.hsv_to_rgb(c, 1, 0.99)
turtle.pencolor (p)
c+=0.002
turtle.circle(-i, n)
turtle.right (100)
turtle.circle(i, c)
turtle.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()
πŸ‘‡ Multiple Starts Design πŸ‘‡
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ‘‡ Link for source code πŸ‘‡