()
| 17 | win.after(3000,blink) |
| 18 | |
| 19 | def toggle_pupils(): |
| 20 | if not c.crossed_eyes: |
| 21 | c.move(pupil_left, 10,-5) |
| 22 | c.move(pupil_right, -10,-5) |
| 23 | c.crossed_eyes = True |
| 24 | else: |
| 25 | c.move(pupil_left, -10,5) |
| 26 | c.move(pupil_right, 10,5) |
| 27 | c.crossed_eyes = False |
| 28 | |
| 29 | def toggle_tongue(): |
| 30 | if not c.tongue_out: |