🌐
GitHub
gist.github.com › wynand1004 › ec105fd2f457b10d971c09586ec44900
A Simple Snake Game made in Python 3 · GitHub
A Simple Snake Game made in Python 3. GitHub Gist: instantly share code, notes, and snippets.
🌐
GitHub
github.com › rajatdiptabiswas › snake-pygame
GitHub - rajatdiptabiswas/snake-pygame: :snake: A snake game written in Python using the Pygame library · GitHub
:snake: A snake game written in Python using the Pygame library - rajatdiptabiswas/snake-pygame
Starred by 203 users
Forked by 214 users
Languages   Python
🌐
GitHub
gist.github.com › sanchitgangwar › 2158089
Snakes Game using Python · GitHub
Snakes Game using Python. GitHub Gist: instantly share code, notes, and snippets.
🌐
GitHub
github.com › tiagopog › snake
GitHub - tiagopog/snake: Classic Snake game written in Python with Arcade. · GitHub
A Python implementation of the classic 🐍 game.
Forked by 3 users
Languages   Python
🌐
GitHub
github.com › topics › python-snake-game
python-snake-game · GitHub Topics · GitHub
Это змейка на языке Python, создана при использовании библиотеки Pygame ... Reinforcement Learning DQL Agent to win every snake game.
🌐
GitHub
gist.github.com › rajatdiptabiswas › bd0aaa46e975a4da5d090b801aba0611
A simple snake game written in Python using the PyGame library (https://github.com/rajatdiptabiswas/snake-pygame) · GitHub
December 12, 2017 - A simple snake game written in Python using the PyGame library (https://github.com/rajatdiptabiswas/snake-pygame) - Snake Game.py
🌐
GitHub
github.com › PavanAnanthSharma › Snake-Game-using-Python › blob › main › SnakeGame.py
Snake-Game-using-Python/SnakeGame.py at main · PavanAnanthSharma/Snake-Game-using-Python
pygame.display.set_caption('Snake Game by: Pavan Ananth Sharma') · game_window = pygame.display.set_mode((window_x, window_y)) · · # FPS (frames per second) controller · fps = pygame.time.Clock() · · # defining snake default ...
Author   PavanAnanthSharma
🌐
GitHub
gist.github.com › HonzaKral › 833ee2b30231c53ec78e
snake game in python · GitHub
direction = 0 pygame.init() s = pygame.display.set_mode((ARRAY_SIZE * 10, ARRAY_SIZE * 10)) #pygame.display.set_caption('Snake') appleimage = pygame.Surface((10, 10)) appleimage.fill((0, 255, 0)) img = pygame.Surface((10, 10)) img.fill((255, 0, 0)) clock = pygame.time.Clock() pygame.time.set_timer(1, 100) while True: e = pygame.event.wait() if e.type == QUIT: pygame.quit() elif e.type == KEYDOWN: key=pygame.key.get_pressed() if key[pygame.K_UP]: direction = 0 elif key[pygame.K_RIGHT]: direction = 1 elif key[pygame.K_DOWN]: direction = 2 elif key[pygame.K_LEFT]: direction = 3 #elif e.type == MO
🌐
GitHub
github.com › nargesbh › Snake-game
GitHub - nargesbh/Snake-game: coding snake game in python
This is a simple implementation of the classic Snake game in Python using the Pygame library.
Author   nargesbh
Find elsewhere
🌐
GitHub
github.com › GeorgeZhukov › python-snake
GitHub - GeorgeZhukov/python-snake: Simple terminal snake game written on python. · GitHub
Simple terminal snake game written on python. Contribute to GeorgeZhukov/python-snake development by creating an account on GitHub.
Starred by 17 users
Forked by 19 users
Languages   Python
🌐
GitHub
github.com › topics › snake-game-python
snake-game-python · GitHub Topics · GitHub
The Snake Game is a classic arcade-style game where you control a snake to eat food and grow while avoiding collisions. Written in Python using Tkinter, the game features intuitive controls, dynamic growth, collision detection, and a scoring system.
🌐
GitHub
github.com › rajatdiptabiswas › snake-pygame › blob › master › Snake Game.py
snake-pygame/Snake Game.py at master · rajatdiptabiswas/snake-pygame
:snake: A snake game written in Python using the Pygame library - rajatdiptabiswas/snake-pygame
Author   rajatdiptabiswas
🌐
GitHub
github.com › hareeshreddi › Python-Snake-Game
GitHub - hareeshreddi/Python-Snake-Game: Implementation of Snake Game in Python
Implementation of Snake Game in Python. Contribute to hareeshreddi/Python-Snake-Game development by creating an account on GitHub.
Forked by 3 users
Languages   Python 100.0% | Python 100.0%
🌐
GitHub
github.com › techwithtim › Snake-Game
GitHub - techwithtim/Snake-Game: The classic snake game. Made with pygame.
The classic snake game. Made with pygame. You can check out my video tutorial series on how to create this game: https://www.youtube.com/watch?v=5tvER0MT14s&t=2s · Python 3.x · pygame · 🎓 No degree? No problem! My program equips you with everything you need to break into tech and land an entry-level software development role.
Starred by 286 users
Forked by 211 users
Languages   Python 100.0% | Python 100.0%
🌐
GitHub
github.com › sarthak1905 › snake-game-python
GitHub - sarthak1905/snake-game-python: This is a classic snake game made by using pygame module of python, implemented using python data structures.
This is a classic snake game made by using pygame module of python, implemented using python data structures. - sarthak1905/snake-game-python
Author   sarthak1905
🌐
GitHub
github.com › dopecodez › python-pygame-snake
GitHub - dopecodez/python-pygame-snake: Classic Snake made with pygame library and collections.deque! · GitHub
Classic Snake Game built with pygame library and collections.deque(Arrays are terrible for the memory). The snake can eat food, grow longer, and collide with itself. Who likes boundaries, so snake is free to go through one side of the screen and appear on opposite.
Author   dopecodez
🌐
GitHub
github.com › RoystonFurtado › Python-Snake-Game
GitHub - RoystonFurtado/Python-Snake-Game: Snake Game created using Python with storage of Game Data in MYSQL Database using pymysql.
Snake Game created using Python with storage of Game Data in MYSQL Database using pymysql. - RoystonFurtado/Python-Snake-Game
Author   RoystonFurtado
🌐
GitHub
github.com › amark23 › Snake-Game--Python-
GitHub - amark23/Snake-Game--Python-: Snake-Game in python(pygame). · GitHub
Snake-Game in python(pygame). . Contribute to amark23/Snake-Game--Python- development by creating an account on GitHub.
Starred by 2 users
Forked by 2 users
Languages   Python