maan this guy is soo underrated, he only has 1,55k subscribers and 3,3k views. he explained how to create hangman in 15 minutes and it was very understandable, if you listen and look carefully in the vid you will understand and write it without any mistakes and errors. keep up the good work
@fu22012 жыл бұрын
Shaun I love it. You get right to the point without trying to be some over the top personality or data dumping a lot of useless words. Great work. Efficient
@ekmeleker1322 жыл бұрын
bro, this was the best hangman video i have ever seen. this was exactly what i needed. keep up your work man!
@flarecreates3815 Жыл бұрын
Shaun, your vids = the best. keep on going.
@enyaroels75602 жыл бұрын
hey, i love the way how you made the game. but how do you have to code it when you find a letter in the middle of a word because i can only find the first letter and the second and so up. can you help me?
@TwelfthMan Жыл бұрын
Hey i have a problem. It all seems to be going well until i actually get a letter right. the program thinks that i got wrong and adds a body part onto hangman, but still adds the letter into the word. I even tried copy and pasting your code from github and it still wouldnt work. I used a different compiler too. Why is this happening? edit: its because the use of current_guess_index is buggy, like another commenter said. It only works if you guess the first letter in the word. pretty big bug for a simple piece of code (relatively simple).
@hiddenthings4199 Жыл бұрын
How do we newbies fix it?
@Ghonzhalez Жыл бұрын
Have you already fixed?
@HaroldLavalley11 ай бұрын
I fixed it. Remove the current_guess_index variable entirely and change the line that uses it "if(randomWord[current_guess_index] == letterGuessed):" to: "if letterGuessed in randomWord:". This will stop the program from caring which index in the randomWord youre dealing with and will simply check if letterGuessed is present in the word at all.
@kellyleigh45728 ай бұрын
@@HaroldLavalley Thank you!! Never would have figured that out
@roeesun67588 ай бұрын
@@HaroldLavalley yeah seems like the position of the letter in the word doesnt matter, nice find
@Syriancoder Жыл бұрын
When i tried to run it, it ran how its supposed to, but wouldnt put the hangman signs when i get one wrong. and if i guess the word it does not say "game over thanks for playing". any help?
@supramur2 жыл бұрын
There are some questions i have. Like why do you need counter variable in printword() function? It doesn't do any job in this "for" cycle and you didn't returned it.
@darreneng2506 Жыл бұрын
Do you know if will it stills works if we remove the counter variable, increment and the [counter]?
@arturartur47472 жыл бұрын
cool video ! Literally save my python class > thanks
@ShaunHalverson2 жыл бұрын
That’s awesome!
@ShaunHalverson2 жыл бұрын
Thanks for watching :)
@seetsamolapo56002 жыл бұрын
How did you create all this logic? Coming up with all these variable names? I'd like to see how you break up the problem, your pseudocode before you code, unless you code as you go
@ShaunHalverson2 жыл бұрын
I normally code it ahead of time and then read off of it during the recording! Also, I try to use variable names that are fairly specific that way you don’t have to backtrack later and find out what it’s for
@ShaunHalverson2 жыл бұрын
Great question!
@HannaBerhanu-dj4kz6 ай бұрын
nice and very helpful!
@arturwyscioek8992 жыл бұрын
The current_guess_index +=1 case is kinda buggy..... If user guessed a letter from the back/end of a random.word the hangman is wrote incorrectly though.... It only works correctly if we guess a letter +1 from the start
@jezzerthesnezzer24762 жыл бұрын
Have you found a way to fix this?
@arturwyscioek8992 жыл бұрын
@@jezzerthesnezzer2476 I gave up on learnig this bruh :(
@jezzerthesnezzer24762 жыл бұрын
@@arturwyscioek899 Alright that’s fine just trying to figure this out for a school project.
@Centurio_Romae Жыл бұрын
@@jezzerthesnezzer2476 I am currently doing the same. Did you find a fix?
@HaroldLavalley11 ай бұрын
I fixed it. Remove the current_guess_index variable entirely and change the line that uses it "if(randomWord[current_guess_index] == letterGuessed):" to: "if letterGuessed in randomWord:". This will stop the program from caring which index in the randomWord youre dealing with and will simply check if letterGuessed is present in the word at all
@tareqalfalah7382 жыл бұрын
Hey man. I love your videos. I did everything in this video but when you try to play hangman it asks me to guess a letter over and over again. I do not know what’s going on. I did exactly what you did. Do you know what’s happening?
@SrijanReddy-c1w8 ай бұрын
you just saved my AP TEST SCORES THANK YOU
@alexanderclaxton25557 ай бұрын
hi I'm a beginner and had a doubt in the function print word, line 63 iits written print(randomword[counter]) i didn't get why we wrote counter as counter is a variable if someone could please help me out
@darrelldube5491 Жыл бұрын
Please make a video for snake 😩😩. By the way your video's are so simple to understand. Thanks for making my coding journey so fun 😩😍
@yanzz95252 жыл бұрын
it just spams my console with "letters guessed so far: "
@kellyleigh45728 ай бұрын
How come when i guess the right letters it still adds body parts to the hangman
@RamcharanRathote-he2is Жыл бұрын
I love you bro This is awesome 👍 Please make more video
@Getincrazy2 жыл бұрын
Say there is 6 letters already guessed. Any letter I guess after that always adds on a part of the hangman, even if the guess is right
@ShaunHalverson2 жыл бұрын
Hmmm, can you compare your code with the stuff on Github? Or add me on Discord and I can try and assist.
@r-ty_dragon1334 Жыл бұрын
@@ShaunHalverson sorry if I’m late. I have the same problem. Have you found a fix yet? Thanks
@r-ty_dragon1334 Жыл бұрын
See my message above
@hiddenthings4199 Жыл бұрын
@@r-ty_dragon1334 I'm trying to fix this problem too. No luck yet.
@deadmanwalking44599 ай бұрын
didnt work. "just keeps saying letters guessed so far:"
@rileymchugh5316 Жыл бұрын
Did nobody realize that if you guess the letters out of order then you you lose one of your guesses even though that is right? that isnt how hangman works
@karmaakbane41842 жыл бұрын
Love your videos.. Hope u can help me modify my python project.. I did what i think is right but when i run it. Error everywhere....