📌  相关文章
📜  如何获取 pygame 窗口高度大小 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:04.799000             🧑  作者: Mango

代码示例1
import pygame
pygame.init()

window = pygame.display.set_mode((500, 500))
x, y = window.get_size()

print("The width is %s" %x)
print("The height is %s" %y)