X7ROOT File Manager
Current Path:
/usr/lib64/python3.8/turtledemo
usr
/
lib64
/
python3.8
/
turtledemo
/
ðŸ“
..
📄
__init__.py
(314 B)
📄
__main__.py
(13.91 KB)
ðŸ“
__pycache__
📄
bytedesign.py
(4.15 KB)
📄
chaos.py
(951 B)
📄
clock.py
(3.13 KB)
📄
colormixer.py
(1.31 KB)
📄
forest.py
(2.9 KB)
📄
fractalcurves.py
(3.39 KB)
📄
lindenmayer.py
(2.38 KB)
📄
minimal_hanoi.py
(2 KB)
📄
nim.py
(6.36 KB)
📄
paint.py
(1.26 KB)
📄
peace.py
(1.04 KB)
📄
penrose.py
(3.3 KB)
📄
planet_and_moon.py
(2.76 KB)
📄
rosette.py
(1.33 KB)
📄
round_dance.py
(1.76 KB)
📄
sorting_animate.py
(4.91 KB)
📄
tree.py
(1.37 KB)
📄
turtle.cfg
(160 B)
📄
two_canvases.py
(1.09 KB)
📄
yinyang.py
(820 B)
Editing: paint.py
#! /usr/bin/python3.8 """ turtle-example-suite: tdemo_paint.py A simple event-driven paint program - left mouse button moves turtle - middle mouse button changes color - right mouse button toggles between pen up (no line drawn when the turtle moves) and pen down (line is drawn). If pen up follows at least two pen-down moves, the polygon that includes the starting point is filled. ------------------------------------------- Play around by clicking into the canvas using all three mouse buttons. ------------------------------------------- To exit press STOP button ------------------------------------------- """ from turtle import * def switchupdown(x=0, y=0): if pen()["pendown"]: end_fill() up() else: down() begin_fill() def changecolor(x=0, y=0): global colors colors = colors[1:]+colors[:1] color(colors[0]) def main(): global colors shape("circle") resizemode("user") shapesize(.5) width(3) colors=["red", "green", "blue", "yellow"] color(colors[0]) switchupdown() onscreenclick(goto,1) onscreenclick(changecolor,2) onscreenclick(switchupdown,3) return "EVENTLOOP" if __name__ == "__main__": msg = main() print(msg) mainloop()
Upload File
Create Folder