Alex8433

Graph

Jun 20th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. from graph import *
  2.  
  3.  
  4. brushColor('blue')
  5. polygon([(100,100),(200,50),
  6.         (300,100),(100,100)])
  7.  
  8. brushColor('green')
  9. rectangle(130,100,270,200)
  10.  
  11. penColor('white')
  12. brushColor('black')
  13. penSize(5)
  14. rectangle(160,120,240,165)
  15.  
  16.  
  17.  
  18. run()
Add Comment
Please, Sign In to add comment