install pygame on mac
python3 -m pip install -U pygame==2.0.0.dev6
install pygame on mac
python3 -m pip install -U pygame==2.0.0.dev6
python pygame
# Be sure to install pygame via pip
import pygame
import sys
# initialize it
pygame.init()
# configurations
frames_per_second = 30
window_height = 600
window_width = 400
# colors
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
BLUE = (0, 0, 255)
# creating window
display = pygame.display.set_mode((window_width, window_height))
# creating our frame regulator
clock = pygame.time.Clock()
# forever loop
while True:
# frame clock ticking
clock.tick(frames_per_second)
# frame Drawing
display.fill(WHITE)
# event loop
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
pip install pygame
py -m pip install -U pygame --user
pygame tutorial
import pygame
pygame.init()
pygame tutorial
crashed = False
while not crashed:
for event in pygame.event.get():
if event.type == pygame.QUIT:
crashed = True
print(event)
pygame.display.update()
clock.tick(60)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us