0
Graphic
How can I draw a graphic in python?
1 ответ
0
Import turtle
w = turtle.Screen()
t =turtle.Turtle()
for i in range(4):
t.forward(50)
t.left(90)
w.mainloop()
#Draws a small square. Only works on #computer. Play around with it
How can I draw a graphic in python?