Want Tips On How 🤔 To Get Python Job ?
Anonymous Poll
96%
Yes please 🙏
4%
No, I am already working 😒
Free Python Courses From Google 👇👇👇
.
https://copyassignment.com/the-7-best-free-python-courses-in-2022/
.
.
.
https://copyassignment.com/the-7-best-free-python-courses-in-2022/
.
.
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()
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()