Turtle Subclass "Objekt hat kein Attribut '_shown'" [Duplikat]

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Turtle Subclass "Objekt hat kein Attribut '_shown'" [Duplikat]

by Anonymous » 23 Aug 2025, 23:04

Neu bei Python hier.

Code: Select all

AttributeError: 'Buttons' object has no attribute '_shown'
< /code>
Mein Python -Skript: < /p>
import turtle

wn = turtle.Screen()
wn.bgcolor("black")
wn.setup(width=800, height=600)
wn.tracer(0)

class Buttons(turtle.Turtle):
def __init__(self, color, text):
self.hideturtle()
self.color(color)
self.shape('square')
self.shapesize(stretch_wid=3, stretch_len=7)
self.penup()
self.goto(0, 0)
self.stamp()
self.color('white')
self.goto(0, 0 - FONT_SIZE/2)
self.write(text, align='center', font=FONT)

t1 = Buttons("green", "start")

while True:
wn.update()

Top