« 6TH POPE Home | Email msg. | Reply to msg. | Post new | Board info. Previous | Home | Next

Python Turtle Star 

By: Zimbler0 in 6TH POPE | Recommend this post (1)
Sun, 24 May 20 3:25 AM | 46 view(s)
Boardmark this board | 6th Edition Pope Board
Msg. 00543 of 60014
Jump:
Jump to board:
Jump to msg. #

Hey De,
That turtle graphics stuff is interesting.
I found the code to do this :

Uploaded Image

# Turtle star

from turtle import *
color('red', 'yellow')
begin_fill()
while True:
.....forward(200)
.....left(170)
.....if abs(pos()) < 1:
..........break
end_fill()
done()

# Just replace the dots with one or two tabs.

Zim.




Avatar

Mad Poet Strikes Again.


- - - - -
View Replies (1) »



» You can also:
« 6TH POPE Home | Email msg. | Reply to msg. | Post new | Board info. Previous | Home | Next