boris-vlasenko

Untitled

Jan 28th, 2015
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. #progras.ru
  2. from turtle import *
  3.  
  4. speed(10)
  5.  
  6. def dice2():
  7.     down()
  8.     fd(100)
  9.     lt(90)
  10.     fd(100)
  11.     lt(90)
  12.     fd(100)
  13.     lt(90)
  14.     fd(100)
  15.     lt(90)
  16.  
  17.     up()
  18.     lt(35)
  19.     fd(40)
  20.     down()
  21.     circle(10)
  22.  
  23.     up()
  24.     lt(5)
  25.     fd(55)
  26.     down()
  27.     circle(10)
  28.  
  29. dice()
  30.  
  31. done()
Advertisement
Add Comment
Please, Sign In to add comment