()
| 73 | score_turtle.write(str(current_score), align='right', font=('Arial', 40, 'bold')) |
| 74 | |
| 75 | def place_leaf(): |
| 76 | leaf.hideturtle() |
| 77 | leaf.setx(rd.randint(-200,200)) |
| 78 | leaf.sety(rd.randint(-200,200)) |
| 79 | leaf.showturtle() |
| 80 | |
| 81 | def start_game(): |
| 82 | global game_started |