Amazing Rotating Python Graphics Design using Turtle 🐢 #python #pythonshorts #coding #viral #design

preview_player
Показать описание
Python Projects for Begineers
Python Turtle
Programming with Turtle
Turtle Graphics
Drawing with Python Turtle
Python Turtle Tutorial
Python Turtle Project
Beginner Python Turtle
Python Turtle Animation
Turtle Art
Python Programming for Kids
Fun with Python Turtle
Creative Coding with Python
Python Turtle Shapes
Python Turtle Games
Python Turtle Challenges
Turtle Graphics in Python
Python Turtle Graphics Tutorial
Python Turtle Speed
Python Turtle Pen Color
Python Turtle Coordinates
Python Turtle Functions
Python Turtle Examples
Python Turtle Patterns
Python Turtle Fractals
Python Turtle Snowflake
Python Turtle Spirograph
Python Turtle Maze
Python Turtle Race Game
Python Turtle Space Invaders Game
Python Turtle Drawing Challenge
Python tips and tricks
Python one-liners
Python code snippets
Python programming challenges
Python hacks
Python tricks for beginners
Python mini-projects
Python shortcuts
Python speed coding
Python quick snippets
Python in a minute
Python bite-sized tutorials
Python mini-lessons
Python coding exercises
Python coding challenges for beginners
Python coding hacks for productivity
Python coding tips for efficiency
Python code walkthroughs
Python coding secrets
Python coding techniques
coding status for whatsapp
As a coder whatsapp status
How to learn coding beginners
How to start coding
How to learn programming language with full
How to become a software Engineer with full information
Software Engineer kaise bane
Web developer career
Introduction to web development
Coding status for whatsapp
python coding status
python programmer
python turtle
turtle tutorial
turtle module
turtle shorts
python shorts
coding tutorial
python tutorial
Basic computer science
CS
Coding Ninja
Hackerrank
Leetcode
How to solve problem in c
coding problems
coding basic problems
Рекомендации по теме
Комментарии
Автор

From turtle import*
import colorsys
bgcolor("black")
tracer(500)

def draw():
h=0
for i in range(75):
c=colorsys.hsv_to_rgb(h, 1, 1)
h+=0.5
up()
goto(0, 0)
down()
color('black')
fillcolor(c)
begin_fill()
rt (98)
circle(i, 12)
fd (290)
fd(i)
lt (29)
for j in range (129):
fd(i)
circle(j, 299, steps=2)
end_fill()
draw()
done()



Hope it's helpful ❤

nqwcbkb
Автор

Sir pls describe full video how to run computer graphics project in python

Navitha-nanduxhy
Автор

from turtle import *
import colorsys

bgcolor('black')
tracer(500)

def draw():
h = 0
for i in range(100):
c = colorsys.hsv_to_rgb(h, 1, 1)
h += 0.01 # Slightly adjusted to avoid rapid color cycling
up()
goto(0, 0)
down()
color('black')
fillcolor(c)
begin_fill()
rt(98)
circle(i, 12)
fd(290)
fd(i)
lt(29)
for j in range(129):
fd(i)
circle(j, 299, steps=2)
end_fill()

draw()
done()

RealGian
Автор

Hello if we do code does our text colour change or not

Cutequingy
Автор

Your passion for programming really shines through your videos. Keep up the great work!

MyCodingDiary
Автор

I would advise against using `import *`, otherwise pretty cool.

tomspex
Автор

from turtle import *
import colorsys
bgcolor ('black')
tracer (500)

def draw():
h = 0
for i in range(100):
c = colorsys.hsv_to_rgb(h, 1, 1)
h += 0.5
up()
goto(0, 0)
down()
color('white')
fillcolor (c)
begin_fill()
rt (98)
circle(i, 12)
fd(i)
lt (29)
for j in range(129):
fd(i)
circle(j, 299, steps=2)
end_fill()
draw()
done()

Amediatv.uz
Автор

Why my screen is just black ???? No error just black please help

AdoptedMusicBD
Автор

Is there reason you skipped the first 2 Lines

Theguywhomakesshittycomments
Автор

To big, how to make it smaller ? Any change in value like 129 or something

Resident
Автор

i replicated this of course had few errors but i think it was the version of the python.. very beautiful

theladyp