Hangman Game for beginners |Introduction | Python Project for beginners

  Рет қаралды 42,407

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Жыл бұрын

In this python tutorial you will learn how to make games with python and create a python hangman project. This python hangman tutorial is about the Introduction of Hangman Game. How to play Hangman Game
Best Python Tutorials for Beginners: • Python - Basic to Advance
*********************************************
Connect & Contact Me:
My Second Channel Link: bit.ly/354n7C7
Facebook: / jennys-lectures-csit-n...
Quora: www.quora.com/profile/Jayanti...
Instagram: / jayantikhatrilamba
Twitter: / khatrijenny
*******************************************
More Playlists:
Programming in C Tutorials: • Programming in C
C++ Tutorials for beginners: • Lec 1: How to Install ...
Placement Series: • Placements Series
Data Structures and Algorithms: https: • Data Structures and Al...
Design and Analysis of Algorithms(DAA): • Design and Analysis of...
Dynamic Programming: • Dynamic Programming
Operating Systems tutorials: // • Operating Systems
DBMS Tutorials: • DBMS (Database Managem...
#pythonprojects #pythonforbeginners #python #jennyslectures #pythonprogramming #hangman

Пікірлер: 29
@Steven-ez6qp
@Steven-ez6qp Ай бұрын
Hi ❤ Hangman Such a nice Fun game I like to let my niece win and She says Yesss lol I got to Hang the mean men 😵 lolol HA HA Soo cute 🥰
@user-ro9oq7qu9b
@user-ro9oq7qu9b 4 күн бұрын
Different days-different hairstyles ❤🤩
@Princereal7869
@Princereal7869 Жыл бұрын
Good project for begineers👌
@manfredmasiko4444
@manfredmasiko4444 Жыл бұрын
Helpful indeed 🙏
@khazimahjavaid6307
@khazimahjavaid6307 7 ай бұрын
Great job.
@chamara854
@chamara854 Жыл бұрын
Your explanation is imazine 🌊
@-vijayKumar-oc5fb
@-vijayKumar-oc5fb Жыл бұрын
Thank you
@ravitejanarala327
@ravitejanarala327 Жыл бұрын
Beautiful ❤
@jillakirthan858
@jillakirthan858 Жыл бұрын
Super super explanation ma'am
@glps369
@glps369 Жыл бұрын
Thank You So Much
@jeethusingh3145
@jeethusingh3145 Жыл бұрын
Thank you so much mam ❤
@rongalamanindra5279
@rongalamanindra5279 Жыл бұрын
Thank you mam
@beking2532
@beking2532 Жыл бұрын
Apko dekh ne hi ate h ❤
@ramjimishra5511
@ramjimishra5511 Жыл бұрын
Mam please🙏 interview preperation ki playlist bna do bhot helpful rhegi kahi bhi nhi milti please🙏🙏🙏🙏🙏🙏
@AmitKumar-ts2pi
@AmitKumar-ts2pi Жыл бұрын
Pattern design plzxz😮😊
@vijayramakrishnan6838
@vijayramakrishnan6838 Жыл бұрын
Mam what is system flow chart can u plz explain and what is the difference. a videio will be better.
@shubhampatil9221
@shubhampatil9221 8 ай бұрын
Hello mam , please provide google drive link for all the notes of python series
@praveenag2266
@praveenag2266 Жыл бұрын
Which algorithm is used here?
@koteswararaopeddiboyina2617
@koteswararaopeddiboyina2617 6 ай бұрын
we want tic tac toe game using python 🤞🤞
@BishalSaha-xo4mx
@BishalSaha-xo4mx 7 ай бұрын
Can I get to see that hangman_stages.py file to know how you have worked with that figure in later video
@Rakhu-e2f
@Rakhu-e2f Жыл бұрын
I think you should teach how to make this game in C++ using SFML or raylib instead of python ..C++ is best choice for game development
@DARK_RYZEN
@DARK_RYZEN 7 ай бұрын
print("let's play hangman") word=len("apple") words=("apple") for i in range(word): print("_",end=" ") print(" ") print(f"the word containing {word} you have 6 lives to guess word") for i in range(6): enter = str(input("enter your input word")) if words==enter: print("you made it perfectly") break else: print("you got hanged")
@SAI_LINGESH
@SAI_LINGESH Жыл бұрын
Can you share the code?
@sakshayaniv9068
@sakshayaniv9068 Жыл бұрын
Chess game 😥
@Haseeb_555
@Haseeb_555 11 ай бұрын
sabr karo ._.
@user-tz1mk6sk1j
@user-tz1mk6sk1j 4 ай бұрын
import random print("Let's Play Hangman!! ") print("You Have Only 6 Lives.So Try To Guess The Word With In 6 Attempts.Good Luck!! ") list_fruits=["apple","banana","orange","strawberry","grape","pineapple","kiwi","mango","watermelon","papaya"] random_fruit=random.choice(list_fruits) length=len(random_fruit) list_1=[] count=1 chances=10 k=0 i=0 for i in range(length): list_1.append('_') print(list_1) while chances!=0: if chances==0: break if k==length: break letter=input(" Guess a Letter: ") for j in range(length): if random_fruit[j]==letter: if list_1[j]=='_': list_1[j]=letter i=1 print(list_1) k=k+1 if count==1: print(""" _________ | | | | | | |______________ """) elif count == 2: print(""" _________ | | | O | | | |_____________""") chances=5 elif count == 3: print("""_________ | | | 0 | | | | |_____________""") chances=4 elif count == 4: print("""_________ | | | 0 | /| | | |_____________""") chances=3 elif count == 5: print("""_________ | | | O | /|\\ | | |_____________""") chances=2 elif count ==6: print("""_________ | | | O | /|\\ | / | |_____________""") chances=1 elif count == 7: print("""_________ | | | O | /|\\ | / \\ | |_____________""") chances=0 print("You Loose The Game Better Luck Next Time") if i == 1: i=0 break if letter not in list_1: count=count+1 print(f"You Gussed {letter} That Is Not Present In The Word.so you lose a life") if count == 2: print("""_________ | | | O | | | |_____________""") chances=5 elif count == 3: print("""_________ | | | O | | | | |_____________""") chances=4 elif count == 4: print("""_________ | | | 0 | /| | | |_____________""") chances=3 elif count == 5: print("""_________ | | | O | /|\\ | | |_____________""") chances=2 elif count == 6: print("""_________ | | | O | /|\\ | / | |_____________""") chances=1 elif count == 7: print("""_________ | | | O | /|\\ | / \\ | |_____________""") chances=0 print("You Loose The Game Better Luck Next Time") if k==length or chances!=0: print("You won the match") else: print("byyy") Mam I developed my own code check it once mam😊😊
Hangman Game for beginners |Flowchart | Python Project for beginners #lec54
5:02
Jenny's Lectures CS IT
Рет қаралды 29 М.
I Made 200 Python Projects...Here Are My 5 FAVORITES
11:23
Tech With Tim
Рет қаралды 146 М.
Викторина от МАМЫ 🆘 | WICSUR #shorts
00:58
Бискас
Рет қаралды 5 МЛН
Как бесплатно замутить iphone 15 pro max
00:59
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 8 МЛН
Functions in Python | Introduction | Python for beginners #lec56
24:07
Jenny's Lectures CS IT
Рет қаралды 124 М.
Hangman Game in Python | Python Project #3 | Python Project for beginners #lec55
31:43
BUILD A MOUSE USING YOUR EYE - Python Project
28:11
Programming Hero
Рет қаралды 176 М.
Types of Arguments in Python | Python Tutorials for Beginners #lec61
21:11
Jenny's Lectures CS IT
Рет қаралды 86 М.