PythonCoder Official
79.7K subscribers
224 photos
8 videos
92 files
98 links
• 𝗕𝗲𝘀𝘁 𝗽𝗹𝗮𝗰𝗲 𝗳𝗼𝗿 𝗣𝘆𝘁𝗵𝗼𝗻 𝗖𝗼𝗱𝗲𝗿𝘀 😀
• 𝗙𝗿𝗲𝗲 𝗣𝗿𝗼𝗴𝗿𝗮𝗺𝗺𝗶𝗻𝗴 𝗖𝗼𝘂𝗿𝘀𝗲𝘀 & 𝗧𝘂𝘁𝗼𝗿𝗶𝗮𝗹𝘀📒
• 𝗗𝗮𝘁𝗮 𝗦𝗰𝗶𝗲𝗻𝗰𝗲📊 | 𝗠𝗮𝗰𝗵𝗶𝗻𝗲 𝗟𝗲𝗮𝗿𝗻𝗶𝗻𝗴 | 𝗔𝗜 🤖
• 𝗗𝗮𝗶𝗹𝘆 𝗗𝗼𝘇𝗲 𝗼𝗳 𝗣𝗿𝗼𝗷𝗲𝗰𝘁𝘀 🧠
Download Telegram
👍1
Output ????
Anonymous Quiz
34%
p
38%
Error
27%
python2.0
🤔2
👍4
👍3👏2
Answer ??
Anonymous Quiz
30%
5
46%
6
24%
3
👍3
🌟𝗦𝗼𝘂𝗿𝗰𝗲 𝗖𝗼𝗱𝗲 💻👇
👍1
👇👇👇👇👇

import turtle

col=('yellow','red','green','orange','blue','white')

t=turtle.Turtle()
screen=turtle.Screen()
screen.bgcolor('black')
t.speed(30)

for i in range (150):

    t.color(col[i%6])
    t.forward(i*4)
    t.left(150)
    t.width(2)
👍4👎3
Output ????
Anonymous Quiz
51%
2.0
49%
2
👍4😱4🤔2
👍3
Output ???????
Anonymous Quiz
52%
4
48%
3
🌟𝗦𝗼𝘂𝗿𝗰𝗲 𝗖𝗼𝗱𝗲 💻👇 Of Rainbow Project 🌈
import turtle as t
import colorsys

t.speed(0)
t.hideturtle()
t.bgcolor("black")
t.title("Rainbow")
t.setup(700,700)
colors=49
radius=300
penwidth=20*7/colors
hue=0

def draw(x,y,r,pensize,color):
t.up()
t.goto(x+r,y)
t.down()
t.seth(90)
t.pensize(pensize)
t.pencolor(color)
t.circle(r,180)

for i in range(colors):
(r,g,b)=colorsys.hsv_to_rgb
(hue,1,1)
draw(0,-100,radius,penwidth,(r,g,b))
radius-=(penwidth-1)
hue+=0.9/colors
2