()
| 96 | |
| 97 | |
| 98 | def randAppleGen(): |
| 99 | |
| 100 | randApplex = round(random.randrange(0,display_width-AppleThickness))#/10.0)*10.0 |
| 101 | randAppley = round(random.randrange(0,display_height-AppleThickness))#/10.0)*10.0 |
| 102 | return randApplex,randAppley |
| 103 | |
| 104 | def snake(block_size,snakeList): |
| 105 |