[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.217.165: ~ $
#! /usr/bin/python3.8
"""       turtle-example-suite:

              tdemo_peace.py

A simple drawing suitable as a beginner's
programming example. Aside from the
peacecolors assignment and the for loop,
it only uses turtle commands.
"""

from turtle import *

def main():
    peacecolors = ("red3",  "orange", "yellow",
                   "seagreen4", "orchid4",
                   "royalblue1", "dodgerblue4")

    reset()
    Screen()
    up()
    goto(-320,-195)
    width(70)

    for pcolor in peacecolors:
        color(pcolor)
        down()
        forward(640)
        up()
        backward(640)
        left(90)
        forward(66)
        right(90)

    width(25)
    color("white")
    goto(0,-170)
    down()

    circle(170)
    left(90)
    forward(340)
    up()
    left(180)
    forward(170)
    right(45)
    down()
    forward(170)
    up()
    backward(170)
    left(90)
    down()
    forward(170)
    up()

    goto(0,300) # vanish if hideturtle() is not available ;-)
    return "Done!"

if __name__ == "__main__":
    main()
    mainloop()

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
__init__.py File 314 B 0644
__main__.py File 13.91 KB 0644
bytedesign.py File 4.15 KB 0755
chaos.py File 951 B 0644
clock.py File 3.13 KB 0755
colormixer.py File 1.31 KB 0644
forest.py File 2.9 KB 0755
fractalcurves.py File 3.39 KB 0755
lindenmayer.py File 2.38 KB 0755
minimal_hanoi.py File 2 KB 0755
nim.py File 6.36 KB 0644
paint.py File 1.26 KB 0755
peace.py File 1.04 KB 0755
penrose.py File 3.3 KB 0755
planet_and_moon.py File 2.76 KB 0755
rosette.py File 1.33 KB 0644
round_dance.py File 1.76 KB 0644
sorting_animate.py File 4.91 KB 0644
tree.py File 1.37 KB 0755
turtle.cfg File 160 B 0644
two_canvases.py File 1.09 KB 0644
yinyang.py File 820 B 0755