About 107,000 results
Open links in new tab
  1. Snake Game Help- not using Pygame(Python) - Stack Overflow

    Currently working on designing a snake game using python, with import.draw, without pygame! Most of my game is completed and it is working out very well, except for the fact that any time an arrow is

  2. Snake game in Python using Turtle graphics - Stack Overflow

    May 5, 2015 · So I've been working on a few games in Python (battleships, tic-tac-toe etc.) and this week's project is Snake. I've got a basic set-up going; the snake can move and eats the food but I …

  3. python - How to make a grid in pygame - Stack Overflow

    I am trying to create a basic snake game with Python and I am not familiar with Pygame. I have created a window and I am trying to split that window up into a grid based on the size of the window a...

  4. Snake Game (Python) using Turtle - Stack Overflow

    Sep 13, 2021 · So I've been working on my project which is to make Snake Game in Python where my snake basically eats the circle shape food and it also can pass through the walls which made it even …

  5. How to add play again feature into snake game - Stack Overflow

    Jun 3, 2024 · The majority of this code is from Bro Code's Python tutorial on how to make a snake game in Python. I decided to add a "Play again?" button on the game over screen, and when pressed would...

  6. I am trying to make a snake game using the Python Turtle graphics, …

    Jun 19, 2024 · I am trying to make a snake game using the Python Turtle graphics, but it ends as soon as it starts [closed] Asked 1 year, 1 month ago Modified 1 year, 1 month ago Viewed 146 times

  7. Snake game in python, the food does not appear on the screen

    Jan 9, 2023 · When I created the food in the main.py file it was created, but when I tried to import it, it does not get created The screen and the snake are created, the snake get commands from …

  8. Python game on the HTML page - Stack Overflow

    Dec 22, 2020 · I'm new to python, and my friend asked me to make a python snake game for our website. I made it, but there is only python code shows on our website. But we need that there is our …

  9. python - How to add snake body in pygame - Stack Overflow

    May 25, 2020 · snake.eat() is now a function that returns True or False based on the snake head (first position in history, aka body) being inside a food object. This function also adds to the body if a eat …

  10. python - How do I insert a restart game option? - Stack Overflow

    Jan 18, 2017 · If you want to add the functionality of restarting the game in OOP python, just put the entire main.py code inside a function and trigger the function at the end of main.py. Inside main.py …