“Pygame Python” Ответ

Pygame Python

import pygame
import sys

WIDTH = 600
HEIGHT = 650
Frame_P_second = 60
pygame.init()
win = pygame.display.set_mode((WIDTH, HEIGHT))
running_game = True
while running_game:
    for events in pygame.event:
      if event.type in pygame.event == "QUIT":
        running_game = False
        break
        sys.exit()
    else:
      running_game = True
      
Wrong-Whale

пигама

pip install pygame

And import the library.

import pygame

Clever Caribou

пигама

A good python framework/library for makin small-scale games!
Victorious Vulture

пигама

#here is some code
import pygame
pygame.init()

clock = pygame.time.Clock()

screen = pygame.setmode((800,600))
pygame.display.set_caption("my game")
pygame.display.set_icon(pygame.image.load('./imgs/icon.png'))

run = True

while run:
	screen.fill(0,0,0)
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            run = False
      """
      your code here
      """
            
    pygame.display.update()
    clock.tick(60)
ultra

Ответы похожие на “Pygame Python”

Вопросы похожие на “Pygame Python”

Больше похожих ответов на “Pygame Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования