Infinite Loop Python coding #Shorts

preview_player
Показать описание
A small python code for an infinite loop

Follow for more

#shorts
Рекомендации по теме
Комментарии
Автор

from turtle import *

bgcolor('black')
color('cyan')
speed(11)
right(45)
for i in range(150):
circle(30)
if 7 < i < 62:
left(5)
if 80 < i < 133:
right(5)
if i < 80:
forward(10)
else:
forward(5)

celjskilord
Автор

Mine worked, just that instead of cyan I chose white n it looks flawless, really

mtvlogsofficials
Автор

i typed it and its saying after the “else:” ‘unindent doesnt match any outer indentation level’

PotFoodin
Автор

i wrote the same code and it is not moving .

Not_Ayan