1일차
1일차 시작. 3월 8일chat gpt에 Implement a code that allows selecting one of several GUI buttons using keyboard directional keys in Pygame라고 물어보니 다음과 같은 코드를 짜주더라. 실제로 잘 수행된다. import pygamepygame.init()# Define some colorsBLACK = (0, 0, 0)WHITE = (255, 255, 255)GRAY = (128, 128, 128)YELLOW = (255, 255, 0)# Set up the Pygame windowSCREEN_WIDTH, SCREEN_HEIGHT = 640, 480screen = pygame.display.set_mode((S..
2023. 3. 8.