What code will open up a window 400 pixels high and 800 pixels wide?
a)size = 400, 800
screen = pygame.display.set_mode(size)
b)size = [800, 400]
screen = pygame.display.set_mode(size)
c)screen = pygame.display.open_window(400, 800)
d)size = 800 x 400
screen = pygame.display.set_mode(size)
Answers
Answered by
1
Answer:
python or html?
Explanation:
make me brainliest
Similar questions