import turtle as t t.speed(5) t.color("white") t.Screen().bgcolor("blue") t.up() t.goto(0,40) t.begin_fill() t.circle(25) t.end_fill() t.up() t.goto(0,-10) t.begin_fill() t.circle(35) t.end_fill() t.goto(0,-80) t.begin_fill() t.circle(45) t.end_fill() t.up() #arms t.color("brown") t.goto(30,5) t.down() t.width(10) t.goto(60,45) t.goto(40,25) t.goto(40,45) t.goto(40,25) t.up() t.goto(-25,5) t.down() t.width(10) t.goto(-60,45) t.goto(-40,25) t.goto(-40,45) t.goto(-40,25) t.up() #eyes t.color("black") t.goto(-5,65) t.begin_fill() t.circle(3) t.end_fill() t.up() t.goto(5,65) t.begin_fill() t.circle(3) t.end_fill() #buttons t.goto(0,30) t.begin_fill() t.circle(2) t.end_fill() t.goto(0,20) t.begin_fill() t.circle(2) t.end_fill() t.goto(0,10) t.begin_fill() t.circle(2) t.end_fill() t.goto(0,0) t.begin_fill() t.circle(2) t.end_fill() t.goto(0,-10) t.begin_fill() t.circle(2) t.end_fill() t.up() #nose t.setheading(180) t.goto(-6,60) t.color("orange") t.stamp() t.up() t.goto(500,500)
For SuperFlatPankake2 or anyone who wants it Runs smoother on here: https://trinket.io/ Press any key for instructions Thonny version: import turtle as t # setup t.speed(5) t.width(3) screen = t.Screen() screen.bgcolor("blue") # snow color t.color("white", "white") # head t.up() t.goto(0, 40) t.down() t.begin_fill() t.circle(25) t.end_fill() # middle t.up() t.goto(0, -10) t.down() t.begin_fill() t.circle(35) t.end_fill() # bottom t.up() t.goto(0, -80) t.down() t.begin_fill() t.circle(45) t.end_fill() # arms t.color("brown") t.width(10) t.up() t.goto(30, 5) t.down() t.goto(60, 45) t.up() t.goto(-30, 5) t.down() t.goto(-60, 45) # eyes t.color("black", "black") t.width(1) t.up() t.goto(-8, 65) t.down() t.begin_fill() t.circle(3) t.end_fill() t.up() t.goto(8, 65) t.down() t.begin_fill() t.circle(3) t.end_fill() # buttons for y in [30, 20, 10, 0, -10]: t.up() t.goto(0, y) t.down() t.begin_fill() t.circle(2) t.end_fill() # nose (triangle carrot) t.up() t.goto(0, 60) t.setheading(0) t.color("orange", "orange") t.down() t.begin_fill() for _ in range(3): t.forward(15) t.left(120) t.end_fill() # finish t.up() t.hideturtle() t.goto(500, 500) t.done()