Python im Browser mit Brython
2023
Python
Brython
Die Schildkröte in Aktion:
Code Ausgabe
<script type="text/python">
from browser import document
import turtle
turtle.set_defaults(
turtle_canvas_wrapper = document['bild']
)
t = turtle.Turtle()
t.width(2)
c = ['red', 'green', 'blue', '#004220', '#840032']
l = [140, 100, 90, 80, 70]
for i in range(5):
t.penup()
t.color(c[i])
t.goto(0,0)
w = 360.0/(3+i)
t.setheading(w/2)
t.pendown()
for j in range(3+i):
t.forward(l[i])
t.left(w)
t.penup()
t.goto(-70, 180)
t.color('black')
t.write("Brython ist cool!", font=("Courier", 12, "normal"))
turtle.done()