Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
11
Task/Archimedean-spiral/Python/archimedean-spiral.py
Normal file
11
Task/Archimedean-spiral/Python/archimedean-spiral.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
from turtle import *
|
||||
from math import *
|
||||
color("blue")
|
||||
down()
|
||||
for i in range(200):
|
||||
t = i / 20 * pi
|
||||
x = (1 + 5 * t) * cos(t)
|
||||
y = (1 + 5 * t) * sin(t)
|
||||
goto(x, y)
|
||||
up()
|
||||
done()
|
||||
Loading…
Add table
Add a link
Reference in a new issue