Make a Snake Game in Python | Turtle | Python Project

Поділитися
Вставка
  • Опубліковано 8 вер 2024
  • How to make a snake game using python. Here we will make the classic snake game with python.
    Source Code : github.com/eva...
    Join our Facebook Group : / codingcom
    Our Instagram : / codingwithevan
    Our Facebook : / codingwithevan
    ------------------------------------------
    Music Credit: Lakeyinspired
    Soundcloud: / lakeyinspired
    ------------------------------------------

КОМЕНТАРІ • 200

  • @rekhNZ
    @rekhNZ 3 роки тому +17

    if somebody has trouble that the snake is not running just run it again

    • @rekhNZ
      @rekhNZ 3 роки тому +1

      sorry moving not running

    • @rasmusmoto7668
      @rasmusmoto7668 3 роки тому +4

      what do you mean the snake wont move for me. i'll restared the program 100 times

    • @mayankchauhanvl-a2663
      @mayankchauhanvl-a2663 3 роки тому

      i type def but def is giving error

    • @maxson5815
      @maxson5815 2 роки тому

      @@rasmusmoto7668 yeah its not working its stuck nt moving

    • @thelmaperera245
      @thelmaperera245 2 роки тому +1

      maybe the capital letter is on

  • @thelmaperera245
    @thelmaperera245 2 роки тому +8

    i love this channel .this channel deserves more subs

    • @CodingWithEvan
      @CodingWithEvan  2 роки тому +1

      Thank you! You can share my videos with your friends. That will mean a lot ❤️

  • @alimouricppcoding1648
    @alimouricppcoding1648 3 роки тому +14

    i use pycharm but when i start plying the snake does not moved

  • @mannisharma5737
    @mannisharma5737 3 роки тому +9

    Bro i tried alot but snake doesn't moved from his place....now what did i do?

  • @musyarofahhumaira4892
    @musyarofahhumaira4892 3 роки тому +9

    Please help me, can someone tell me why the snake game what I made doesn't move? I had press (W A S D) but still can move😭

  • @dhiyaneshwarchess12Pro
    @dhiyaneshwarchess12Pro 3 роки тому +1

    Thanks bro it was entertainment day for making snake game
    Thank you so much bro......

  • @citosworld1201
    @citosworld1201 Рік тому

    I Made a snake game and it worked! BIG TIME.

  • @razvan3596
    @razvan3596 3 роки тому +7

    Could somebody explain these lines, please?:
    for i in range(len(segments) - 1, 0, -1):
    x = segments[i - 1].xcor()
    y = segments[i- 1].ycor()
    segments[i].goto(x, y)
    if len(segments) > 0:
    x = head.xcor()
    y = head.ycor()
    segments[0].goto(x, y)

    • @keirathatwal1011
      @keirathatwal1011 3 роки тому +1

      Bro literally the same problem serious help required

    • @kuch.bhi8847
      @kuch.bhi8847 2 роки тому +1

      Yeah I actually know little about python and a good amount about java, this part of for in is very confusing to me, rest I could make out myself

    • @kotireddymadireddy3117
      @kotireddymadireddy3117 2 роки тому +2

      It is a code for segments to follow the head

    • @NElectronicSoul
      @NElectronicSoul Рік тому +2

      It is using a for loop to iterate through all of the objects in the segments list. i is an integer, and the range goes backwards from the end of the len(gth) of the list (-1) to zero, going backwards -1 each time. IT then tells the object at index i to goto the x,y of the previous object.
      finally it tells the first object in the list to go to the head objects x,y if there are any objects in the segments list.

  • @thelmaperera245
    @thelmaperera245 2 роки тому +4

    this is a very good tutorial thanks

  • @zach2252
    @zach2252 3 роки тому +7

    in order to run this program i just need to download python turtle right?

  • @AnimeExplainer-b6k
    @AnimeExplainer-b6k 2 роки тому +1

    Very nice video in UA-cam thanks bro

  • @naufalrahfi2286
    @naufalrahfi2286 3 роки тому +4

    Great tutorial 👍 its working

    • @farzadtafreem6414
      @farzadtafreem6414 3 роки тому

      really how did it move? its not working for me pls help me if u can

    • @sharathbhat698
      @sharathbhat698 3 роки тому

      @@farzadtafreem6414 send the code

    • @maxson5815
      @maxson5815 2 роки тому

      @@farzadtafreem6414 same for me its nt working

  • @mohammadadnan4044
    @mohammadadnan4044 Рік тому +2

    After finishing the code and getting the interface of the game which key I have to press to start the game?

  • @RajBaghel018
    @RajBaghel018 3 роки тому +2

    all perfet but my snake is not movig i am pressing W A S D Keywords but no change please help

  • @mmoonnaa
    @mmoonnaa 3 роки тому +1

    Oh my God BRO! , I think you are tired of this video !! Really cool !! I've just put you a "like" when I arrive in the middle of the video !! OK, I will but " subscribe "

  • @apollonmegara8220
    @apollonmegara8220 3 роки тому +2

    Hello im having a problem in the line wn.update() it says exception has occurred: terminator X

  • @thelmaperera245
    @thelmaperera245 2 роки тому +1

    thank you very much it was sucessful

  • @yashsalvi
    @yashsalvi 3 роки тому +4

    My everything is perfect and my snake is also moving but when touching food it's shape is not increasing so plz any one can help me.

  • @TokyoEdTech
    @TokyoEdTech 4 роки тому +3

    This is a copy of my Snake Game tutorial found here: ua-cam.com/video/BP7KMlbvtOo/v-deo.html
    I don't mind you using my code - everything I do is Creative Commons Share-Alike Attribution licensed. But, I would appreciate a link back in the description. Thanks.

  • @hangawpc123
    @hangawpc123 3 роки тому +3

    How does the segment part work?

  • @shaileshkanzariya5184
    @shaileshkanzariya5184 3 роки тому +1

    Very cool💐

  • @AQD_Aziz
    @AQD_Aziz 3 роки тому +4

    #imports
    import turtle
    import time
    import random
    delay = 0.1
    #scores
    score = 0
    high_score = 0
    #set up screen
    wn = turtle.screen()
    wn.title("snake game")
    wn.bgcolor('yellow')
    wn.setup(width=600, hight=600)
    wn.tracer(0)
    #snake head
    head = turtle.Turtle()
    head.speed(0)
    head.shape("square")
    head.color("black")
    head.penup()
    head.goto()
    head.direction = "stop"
    #snake food
    food= turtle.Turtle()
    food.speed(0)
    food.shape("square")
    food.color("red")
    food.penup()
    food.goto(0,100)
    segments = []
    #scoreboards
    sc = turtle.Turtle()
    sc.speed(0)
    sc.shape("square")
    sc.color("black")
    sc.penup()
    sc.hideturtle()
    sc.goto(0,260)
    sc.write("score: 0 High score: 0", align = "center", font=("ds-digital", 24, "normal"))
    #Functions
    def go_up():
    if head.direction != "down":
    head.direction = "up":
    def go_down():
    if head.direction != "up":
    head.direction = "down":
    def go_left():
    if head.direction != "right":
    head.direction = "left":
    def go_right():
    if head.direction != "left":
    head.direction = "right":
    def move():
    if head.direction == "up":
    y = head.ycor()
    head.sety(y+20)
    if head.direction == "down":
    y = head.ycor()
    head.sety(y-20)
    if head.direction == "left":
    x = head.xcor()
    head.setx(x-20)
    if head.direction == "right":
    x = head.xcor()
    head.setx(x+20)
    #keyboard bindings
    wn.listen()
    wn.onkeypress(go_up, "w")
    wn.onkeypress(go_down, "s")
    wn.onkeypress(go_left, "a")
    wn.onkeypress(go_right, "d")
    #MainLoop
    while True:
    wn.update()
    #check collision with border area
    if head.xcor()>290 or head.xcor()290 or head.ycor()0
    x = head.xcor()
    y = head.ycor()
    segments[0].goto(x,y)

    move()
    #check for collision with body
    for segment in segments:
    if segment.distance(head)

  • @deviant5176
    @deviant5176 3 роки тому +4

    I’m getting the turtle.terminator error with wn.update(). Is there a way to fix this?

    • @allwinlion7806
      @allwinlion7806 Місяць тому +1

      same bro my error is same

    • @deviant5176
      @deviant5176 Місяць тому

      @@allwinlion7806 yo how did you find my comment that was 3 years ago

  • @tejaspatil4825
    @tejaspatil4825 3 роки тому +3

    I have done the coding perfectly and program has been ran successfully but the problem is snake is stable at one place and its not moving. So what shall I do please help me bro

    • @CodingWithEvan
      @CodingWithEvan  3 роки тому +1

      According to this code you can move the snake by pressing w a s d. Check that block.

    • @maebaya8863
      @maebaya8863 3 роки тому

      @@CodingWithEvan Hi Evan! thank you for this video : )
      I have a little question, is it possible to link the opposite borders of the turtle screen in this game? So when the snake goes through one side, it comes out through the opposite side?
      If yes, can you tell me😟 I've tried checking on Google but didn't find anything : (

    • @BGMI_KHELOGE
      @BGMI_KHELOGE 3 роки тому +1

      @@CodingWithEvan it is not moving yet, with w, s, a ,d
      What should I do

  • @harishdas2962
    @harishdas2962 2 роки тому

    NO NEED TO RUN THE PROGRAMME IN VS CODE JUST PUT THE CODE IN PTHON 64-BIT THEN THE GAME WILL START AUTOMATICALLY. BY THE WAY THANKS FOR THE CODE BRO.

  • @Skepeee
    @Skepeee 3 роки тому +3

    Thanks bro!

  • @coldsavagegod7101
    @coldsavagegod7101 3 роки тому +1

    So the program runs, but there is some error showing, I copied your exact code. Also, for some reason, even after I copied your exact code, my snake dies even if it hasn't touched its body or the borders, it's laggy and all. Another thing that is happening is that if I die after touching the border, the snake resets to its original position, but the food item still stays at its previous spot. Someone please help.

  • @aplinplays3814
    @aplinplays3814 3 роки тому +2

    when i run it the "snake head" does not move

    • @CodingWithEvan
      @CodingWithEvan  3 роки тому

      You can move them by pressing W A S D

    • @aplinplays3814
      @aplinplays3814 3 роки тому

      I know but it still doesnt move :(

    • @sushantshrestha4095
      @sushantshrestha4095 3 роки тому

      @Aplin Plays Now you know how to move that snake? Please tell me i also have the same problem

    • @aplinplays3814
      @aplinplays3814 3 роки тому

      @@sushantshrestha4095 Sorry but i havent figured it out yet

  • @phaxil4207
    @phaxil4207 3 роки тому +1

    Thanks soo much i subbed and liked the video

  • @omupadhyay7938
    @omupadhyay7938 2 роки тому +1

    Hello I made this game in pydriod in my android phone and the bug is that the Snake is not moving could you tell me hove to solve this ??

  • @thusharafernando759
    @thusharafernando759 2 роки тому

    great work.

  • @MisticTitan-wd9fc
    @MisticTitan-wd9fc 3 роки тому +1

    I now can update my program to 0.3!

  • @alexutz0747
    @alexutz0747 3 роки тому +1

    Can you please tell me what should I do it says "AttributeError: 'int' object has no attribute ' speed'

    • @codedwithajay
      @codedwithajay 2 роки тому

      ua-cam.com/video/tRVj18DTMz8/v-deo.html

  • @D-Lite98
    @D-Lite98 3 роки тому

    Nice coding

  • @Ice_Bear_With.Glasses
    @Ice_Bear_With.Glasses 3 роки тому +2

    What app did you use
    I think you used pycharm, did you and i subbed

    • @CodingWithEvan
      @CodingWithEvan  3 роки тому +1

      I used vscode.

    • @Ice_Bear_With.Glasses
      @Ice_Bear_With.Glasses 3 роки тому +1

      @@CodingWithEvan ok thanks

    • @Ice_Bear_With.Glasses
      @Ice_Bear_With.Glasses 3 роки тому +1

      @@CodingWithEvan what did you do to run it cause when i click on run it says start debbuging and run without debugging pls help me

  • @technicalbatsman
    @technicalbatsman 2 роки тому

    Thank You Very Much !

  • @baonguyengia6174
    @baonguyengia6174 2 роки тому +2

    Here are full code:
    #imports
    import turtle
    import time
    import random
    delay = 0.1
    #scores
    score = 0
    high_score = 0
    #set up screen
    wn = turtle.Screen()
    wn.title("Snake Game")
    wn.bgcolor('yellow')
    wn.setup(width=600, height=600)
    wn.tracer(0)
    #snake head
    head = turtle.Turtle()
    head.speed(0)
    head.shape("square")
    head.color("black")
    head.penup()
    head.goto(0,0)
    head.direction = "stop"
    #snake food
    food= turtle.Turtle()
    food.speed(0)
    food.shape("square")
    food.color("red")
    food.penup()
    food.goto(0,100)
    segments = []
    #scoreboards
    sc = turtle.Turtle()
    sc.speed(0)
    sc.shape("square")
    sc.color("black")
    sc.penup()
    sc.hideturtle()
    sc.goto(0,260)
    sc.write("score: 0 High score: 0", align = "center", font=("ds-digital", 24, "normal"))
    #functions
    def go_up():
    if head.direction != "down":
    head.direction = "up"
    def go_down():
    if head.direction != "up":
    head.direction = "down"
    def go_left():
    if head.direction != "right":
    head.direction = "left"
    def go_right():
    if head.direction != "left":
    head.direction = "right"
    def move():
    if head.direction == "up":
    y = head.ycor()
    head.sety(y+20)
    if head.direction == "down":
    y = head.ycor()
    head.sety(y-20)
    if head.direction == "left":
    x = head.xcor()
    head.setx(x-20)
    if head.direction == "right":
    x = head.xcor()
    head.setx(x+20)
    #keyboard bindings
    wn.listen()
    wn.onkeypress(go_up, "w")
    wn.onkeypress(go_down, "s")
    wn.onkeypress(go_left, "a")
    wn.onkeypress(go_right, "d")
    #MainLoop
    while True:
    wn.update()
    #check collision with border area
    if head.xcor()>290 or head.xcor()290 or head.ycor()0:
    x = head.xcor()
    y = head.ycor()
    segments[0].goto(x,y)
    move()
    #check for collision with body
    for segment in segments:
    if segment.distance(head)

    • @gagandeepsinghjass
      @gagandeepsinghjass 2 роки тому +1

      Can somebody tell how to fix this issue:
      It is showing turtle has no attribute direction in the the line head.direction

    • @aymanhechachena9699
      @aymanhechachena9699 2 роки тому

      @@gagandeepsinghjass first its probably head.direction('stop')

  • @devalokvarshney5523
    @devalokvarshney5523 3 роки тому +1

    Thank you Very Much

    • @devalokvarshney5523
      @devalokvarshney5523 3 роки тому +1

      i have a doubt that can i want to move my snake with keys like up key and left key
      as it is difficult for me to play with w,a,s,d
      please reply/help

    • @CodingWithEvan
      @CodingWithEvan  3 роки тому +1

      yes you can,
      on the keyboard binding, where I used "w", "a", "s", "d" you can write "Up", "Down", "Left", "Right"

  • @darkwolf3494
    @darkwolf3494 2 роки тому

    everything work find but one thing that I feel almost give up why can't I start to move? I follow ever single code you write and double check it and nothing wring but I just can't move how to fix it

  • @berbatsuleiman
    @berbatsuleiman Рік тому

    how can i add a property which makes this snake faster as long as i keep holding the button

  • @sudhakarambati2626
    @sudhakarambati2626 3 роки тому +1

    Bro it's working but the keys function were not working

  • @MANNLESTERMAGBUHOS
    @MANNLESTERMAGBUHOS Рік тому

    Hi. I am trying to make a life simulator game using python and turtle. I already know how to move the character, but I am having problems with how the character should interact with the environment (like buildings or something). any suggestions or suggested resources?

  • @svicky9406
    @svicky9406 3 роки тому

    Super

  • @siddarth1260
    @siddarth1260 Рік тому

    its not moving some body please help here is the code:
    #imports
    import turtle
    import time
    import random
    delay = 0.1
    #scores
    score = 0
    high_score = 0
    #set up screen
    wn = turtle.Screen()
    wn.title("Snake Game")
    wn.bgcolor('yellow')
    wn.setup(width=600, height=600)
    wn.tracer(0)
    #snakes head
    head = turtle.Turtle()
    head.speed(0)
    head.shape("square")
    head.color("black")
    head.penup()
    head.goto(0,0)
    head.direction = "stop"
    #snake food
    food= turtle.Turtle()
    food.speed(0)
    food.shape("square")
    food.color("red")
    food.penup()
    food.goto(0,100)
    segments = []
    #scoreboards
    sc = turtle.Turtle()
    sc.speed(0)
    sc.shape("square")
    sc.color("black")
    sc.penup()
    sc.hideturtle()
    sc.goto(0,260)
    sc.write("score:0 High score:0", align = "center", font=("ds-digital", 24, "normal"))
    #Functions
    def go_up():
    if head.direction != "down":
    head.direction = "up"
    def go_down():
    if head.direction != "up":
    head.direction = "down"
    def go_left():
    if head.direction != "right":
    head.direction = "left"
    def go_right():
    if head.direction != "left":
    head.direction = "right"
    def move():
    if head.direction == "up":
    y = head.ycor()
    head.sety(y+20)
    if head.direction == "down":
    y = head.ycor()
    head.sety(y-20)
    if head.direction == "left":
    x = head.xcor()
    head.setx(x-20)
    if head.direction == "right":
    x = head.xcor()
    head.setx(x+20)
    # Keyboard Bindings
    wn.listen()
    wn.onkeypress(go_up, "w")
    wn.onkeypress(go_down, "s")
    wn.onkeypress(go_left, "a")
    wn.onkeypress(go_right, "d")
    #MainLoop
    while True:
    wn.update()
    #check collision with border area
    if head.xcor()>290 or head.xcor()290 or head.ycor()0:
    x = head.xcor()
    y = head.ycor()
    segments[0].goto(x,y)
    move()
    #check for collision with body
    for segment in segments:
    if segment.distance(head)

  • @shinchan5906
    @shinchan5906 2 роки тому

    The yellow screen is just visible for a second but i have written the code as it is then why it's not working?

  • @whoman0385
    @whoman0385 3 роки тому

    help pls it only opens for a second and then closes
    edit: it runs but i cant go left and it doesnt grow segments

  • @Mistyseaholm
    @Mistyseaholm 3 роки тому +4

    The score is going up on it's own and it's making my speed go insane. Can someone be so kind as to tell me what might be wrong?

    • @mmoonnaa
      @mmoonnaa 3 роки тому

      Actually, I tried creating these icons, but it didn't work for me, so, I'm sorry ...
      If it works, I'll tell you very quickly without a doubt.

    • @keirathatwal1011
      @keirathatwal1011 3 роки тому +1

      Yeah I’m having the same problem I don’t know how to fix it help please

  • @arpon_dhar
    @arpon_dhar 3 роки тому

    bro x=segments[index-1].xcor() is showing out of range
    in your video it is line no.134
    what to do plz help.

  • @hinaashraf3376
    @hinaashraf3376 3 роки тому

    whenever i try to make the snake move it does not move and whenever close the game it gives me errors please tell why it is doing this i really want to learn programming

  • @keirathatwal1011
    @keirathatwal1011 3 роки тому

    Bro I need help with line 134 on the code the x has a squiggly red line under it and don’t know how to fix

  • @zeddzaeem4937
    @zeddzaeem4937 2 роки тому

    damn its working if fun ..... but there's a problem when i try to go up , it just suddenly close n when i try to go left it's just stop :[ ....... any suggestion ??? wht shoul i do now :[

  • @sayoko_ou
    @sayoko_ou 2 роки тому

    Uh can someone explain to me why the segments have to be out of range

  • @animebadassmoments179
    @animebadassmoments179 3 роки тому +1

    It is not working bgcolor screen is only coming

  • @caidn3638
    @caidn3638 2 роки тому

    when i try running th game in vscode the game opens for a split second and then closes. it says "TypeError: turtle.Vec2D() argument after * must be an iterable, not float" can someone help pls

  • @mashhedmunkey2894
    @mashhedmunkey2894 3 роки тому +1

    Very useful and good!

  • @dominicmurimimwaniki1330
    @dominicmurimimwaniki1330 2 роки тому

    Hello Evan? The snake isn't moving at all. I cross checked the code more
    than three times.

  • @k-shav3120
    @k-shav3120 3 роки тому +1

    There is a problem in line 84 with me please solve it

  • @SpyderGamer
    @SpyderGamer 3 роки тому

    Thanks man!!!

  • @vaqifabdullayev6322
    @vaqifabdullayev6322 2 роки тому

    It says there is no title for class turtle...

  • @surajghadage5275
    @surajghadage5275 2 роки тому

    Snake is not moving by using your source code what happens.

  • @polunochNY
    @polunochNY 3 роки тому +1

    how i can change window's icon??? help me please!

  • @hypercharge26
    @hypercharge26 3 роки тому +2

    The snake doesn't move even on pressing w,a,s,d

    • @arj2924
      @arj2924 3 роки тому +1

      bro you may have done it wrong it worked for me ,try looking for mistakes in direction or the keyboard binding etc..

    • @BGMI_KHELOGE
      @BGMI_KHELOGE 3 роки тому +1

      @@arj2924 how to correct them?

  • @sonalikoli858
    @sonalikoli858 3 роки тому

    thanks

  • @soham726
    @soham726 3 роки тому

    bro my 49 line def is not working because of it .
    what's the solution

  • @diyannayar9354
    @diyannayar9354 3 роки тому

    My snake is stuck and is moving very far distances and i cannot do anything after i eat the first red dot my score remains ten and nothing works

  • @farzadtafreem6414
    @farzadtafreem6414 3 роки тому

    i am very upset that the snake did not move after all this hard work, I needed 4 hours to understand and do the program :(

    • @farzadtafreem6414
      @farzadtafreem6414 3 роки тому

      i am extremly upset

    • @CodingWithEvan
      @CodingWithEvan  3 роки тому

      You can get the source code from the description. Then run the code. Also make sure turtle is installed properly.

  • @salfordqoutes1719
    @salfordqoutes1719 6 місяців тому

    NameError: name 'y' is not defined
    please help me bro

  • @sonalikoli858
    @sonalikoli858 3 роки тому +1

    Im trying to learn python 😇

    • @HariPrasad-mn5vu
      @HariPrasad-mn5vu 3 роки тому +1

      better go with course of code with harry or codeitup on youtube

  • @prabodhgyawali743
    @prabodhgyawali743 2 роки тому

    Also, when my program ends when the head hits the food

  • @h.cosgun420
    @h.cosgun420 Рік тому

    how can I add this font type my code ?

  • @shreyabarman435
    @shreyabarman435 2 роки тому +1

    Hello Evan!!!
    I run the program but snake is not moving...
    Can you figure out this problem?

  • @jivi8213
    @jivi8213 2 роки тому

    I have some advice that would help the viewers, can u pls run the code after every line so if u see an error, like the snake not moving, u can fix it and we can also learn from it

  • @mahfujthepro6535
    @mahfujthepro6535 2 роки тому

    the turtle screen in showing and disappearing. pls help

  • @Nik72777
    @Nik72777 2 роки тому +1

    Course outcome give me

  • @Aghanya-gc6ew
    @Aghanya-gc6ew 3 роки тому

    Hlo bro
    My program throw's an attributeError
    What can I do??

  • @narutouzumaki-rq8vm
    @narutouzumaki-rq8vm 2 роки тому

    Not working
    W a s d is not working
    How to fix it?

  • @36impulse
    @36impulse 3 роки тому

    name segments is not define how to solve this

  • @BGMI_KHELOGE
    @BGMI_KHELOGE 3 роки тому

    Bro it is not working with W S A D can you help me

  • @56themyuiningshen74
    @56themyuiningshen74 3 роки тому

    Can i know what are the extension to install for this??

  • @Mr-Beasst467
    @Mr-Beasst467 2 місяці тому

    How to run in mobile

  • @simabisoyi1494
    @simabisoyi1494 3 роки тому

    Sir, please provide the module named tkinter

  • @_joaozng4brel_136
    @_joaozng4brel_136 3 роки тому +1

    9:52

  • @sathyagamer1084
    @sathyagamer1084 3 роки тому

    Bro syntax error: invalid syntax please help me bro

  • @RotieGaming12
    @RotieGaming12 2 роки тому

    11:51

  • @kavitakumari7312
    @kavitakumari7312 3 роки тому

    snake is not moving plzz help

  • @avoma666
    @avoma666 10 місяців тому

    Name app?

  • @amanueducationalvideos4983
    @amanueducationalvideos4983 3 роки тому

    the snake is stable not moving

  • @Blockcaster420
    @Blockcaster420 3 роки тому

    bruh you put the code in the desription and we can copy it bruh

  • @aadigaur7767
    @aadigaur7767 3 роки тому

    5:41

  • @maskeddanger6302
    @maskeddanger6302 3 роки тому

    will it still work with pycharm'

  • @wee481
    @wee481 3 роки тому

    not working

  • @muhammedbasheerkk8871
    @muhammedbasheerkk8871 3 роки тому +1

    Bro, what happen if I run this project in Android Mobile ?

  • @anandvishwakarma8133
    @anandvishwakarma8133 3 роки тому

    My snake is not moving

  • @AdityaYadav-fx7vk
    @AdityaYadav-fx7vk 3 роки тому

    Dude it did not worked for me 😭😭😭

  • @cryptosurviv3943
    @cryptosurviv3943 3 роки тому

    onkeypress has no attribute

  • @judgeddata5666
    @judgeddata5666 3 роки тому

    Congrats! You earned a sub!

  • @iandarylnielbock3326
    @iandarylnielbock3326 3 роки тому

    It didnt work for me :(((((((

  • @citosworld1201
    @citosworld1201 Рік тому

    I am STILL a KID...

  • @ammarelamin6140
    @ammarelamin6140 3 роки тому

    does this work on all computers

    • @ammarelamin6140
      @ammarelamin6140 3 роки тому

      the reason i am asking is because i am trying it and it is not working . i dont know what the issue is

    • @CodingWithEvan
      @CodingWithEvan  3 роки тому +1

      Yes it will work. Did you installed 'turtle' properly?

    • @ammarelamin6140
      @ammarelamin6140 3 роки тому

      @@CodingWithEvan i thought that turtle was already installed automatically

    • @ammarelamin6140
      @ammarelamin6140 3 роки тому

      @@CodingWithEvan thanks for these responses. i will subscribe for sure

  • @angel5306
    @angel5306 Рік тому

    My snake don't move