Advertisement
Sp3000

Flag

Nov 17th, 2015
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. from turtle import*
  2. def D():
  3.  fill(1)
  4.  fd(100)
  5.  rt(90)
  6.  fd(200)
  7.  rt(90)
  8.  fd(100)
  9.  rt(90)
  10.  fd(200)
  11.  rt(90)
  12.  fill(0)
  13. fillcolor("#0055a4")
  14. D()
  15. fillcolor("white")
  16. setpos(100,0)
  17. D()
  18. fillcolor("#ef4135")
  19. setpos(200,0)
  20. D()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement