Posts

Showing posts with the label Python Game Programs

Simple Python Program Code for Snake Game

 import pygame import time import random   pygame.init()   white = (255, 255, 255) yellow = (255, 255, 102) black = (0, 0, 0) red = (213, 50, 80) green = (0, 255, 0) blue = (50, 153, 213)   dis_width = 600 dis_height = 400   dis = pygame.display.set_mode((dis_width, dis_height)) pygame.display.set_caption('Snake Game by @ChatGPT')   clock = pygame.time.Clock()   snake_block = 10 snake_speed = 15   font_style = pygame.font.SysFont(None, 30)     def message(msg, color):     mesg = font_style.render(msg, True, color)     dis.blit(mesg, [dis_width / 6, dis_height / 3])     def gameLoop():       game_over = False     game_close = False       x1 = dis_width / 2     y1 = dis_height / 2       x1_change = 0            y1_change = 0       foodx = round(random.randrange(0, dis_width - snake_block) / 10.0) ...