여러가지/Python

Day 20 - 프로젝트 Snake Game (1)

15June 2024. 4. 28. 15:52

● GIT URL : https://github.com/yooyijun15/Python/tree/main/Day20

 

● 학습 내용

1) tracer - update

 

import time
game_screen.tracer(0)

 

버전 1.

while game_is_on:
    for seg in segments:
        seg.forward(20)
        game_screen.update()
        time.sleep(0.2)

버전 2.

while game_is_on:
    game_screen.update()
    time.sleep(0.1)
    for seg in segments:
        seg.forward(20)