pygame
एक pygame विंडो बनाना
खोज…
टिप्पणियों
यदि आप पृष्ठभूमि के रूप में अन्य रंगों को रखना चाहते हैं, तो एक नया चर नाम दें जैसे कि red = (255,0,0)
और इसे बदल दें। display.fill(black)
से display.fill(red)
। आप उन्हें एक चर में संग्रहीत करके और इंटरनेट से उनके RGB मानों की जाँच करके रंग बना सकते हैं।
Pygame विंडो बनाना
import pygame
background_colour = (255,255,255) # For the background color of your window
(width, height) = (300, 200) # Dimension of the window
screen = pygame.display.set_mode((width, height)) # Making of the screen
pygame.display.set_caption('Tutorial 1') # Name for the window
screen.fill(background_colour) #This syntax fills the background colour
pygame.display.flip()
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
pygame.quit()
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow