Advertisement
zhongnaomi

draw_rectangle turtle

Jan 28th, 2019
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. from turtle import *
  2.  
  3.  
  4.  
  5.    
  6. def draw_rectangle(length,height):
  7.    
  8.     hideturtle()
  9.    
  10.    
  11.     begin_fill()
  12.     forward (length)
  13.     right (90)
  14.     forward (height)
  15.     right (90)
  16.     forward (length)
  17.     right (90)
  18.     forward (height)
  19.     right (90)
  20.     end_fill()
  21.  
  22.  
  23.    
  24. draw_rectangle(50,100)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement