Let's make a game with python (pygame) | Open window and set title #Shorts

preview_player
Показать описание
We start with the pygame tutorials! In this video, we look at how to create a game window and how to set the window title.

This video is a short python tutorial, and it is part of the python shorts programming series.

If you enjoy python shorts videos to learn programming,
like and subscribe for more python shorts videos!

Code on GitHub:

You have suggestions for upcoming videos? let me know :)

❤️ You want to support this channel? ❤️

Python Shorts Playlist
Python vs Java Playlist

Music:
Licensed under Creative Commons: By Attribution 3.0 License

#python #coding #tutorial #learncoding #pygame #pythontutorial #programming #learnpython
Рекомендации по теме
Комментарии
Автор

A better habit would be to place screen.fill into the game loop, and use a variable instead of the forever loop - no annoying “you sure?” Messages

GLAWKGD
Автор

Oh! I also wanted to talk about PyGame too. >.<

MauriceL
Автор

8 days 4 tutorials(long af) and that is all I can do and probably import an image...am I retarded?

khqsiuh
Автор

To get output, where have to run this code? in python idle ? or where?

bhavadharani_Govindaraj.
Автор

Currently working on a Zelda game in pygame

colwarsstudiobrickfilmandm
Автор

import pygame

pygame.init()
screen = pygame.display.set_mode((500, 300))

Game')
green = (0, 255, 0)
screen.fill(green)
while True:
pygame.display.update()

demoaikmc
Автор

Please help me shows me no module named pygame

chmelak_
Автор

And you can never close it 🤣 btw nice video ❤

gamesbond
Автор

Could you put the code in the description or on something like pastebin?

lazarstanojevic
Автор

I need help to download pygame, I can't find it and I don't know what app to use for coding python I'm on mobile too, please help guys 😭

SavageAk
Автор

import pygame

pygame.init()
screen=pygame.display.set_mode((500, 300))

Game")
green=(0, 255, 0)
screen.fill(green)

pygame.display.update()
screen.fill(green)

Saya_orang_Melaka