-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThird(2).py
18 lines (14 loc) · 881 Bytes
/
Third(2).py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import pygame, sys # Importing the pygame
from pygame.locals import * # Module and initializing it.
pygame.init() #
canvas = pygame.display.set_mode((500,500)) #
pygame.display.set_caption('Keyboard Input') #
black = (0,0,0) # Creating a canvas of size 500*500 and
canvas.fill(black) # setting caption as "Keyboard Input".
pygame.display.update() #
while True: #
for event in pygame.event.get(): #
if event.type == KEYDOWN : # Detecting a keyboard input and
if event.key == K_ESCAPE: # ending the program if it is escape.
pygame.quit() #
sys.exit()