Python Playground: Disegnare con il Widget Whiteboard
Primi Passi con il Whiteboard Il widget whiteboard ti offre una tela su cui disegnare. Crearne uno è semplicissimo: from story import create story = create() board = story.whiteboard(width=500, height=300) await story.run() Esegui Puoi personalizzare le dimensioni in base alle tue esigenze - basta modificare i parametri width e height. Le Basi del Disegno: Forme e Colori Rettangoli: I Mattoni Base Vuoi disegnare un rettangolo? Ecco come fare: board = story....