This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from turtle import * | |
| RAD = 100 | |
| RAD2 = RAD / 2 | |
| RAD6 = RAD / 6 | |
| degrees() # Switch to degrees | |
| # Draw the circle, radius 100, half black | |
| fillcolor('black') | |
| begin_fill() |