Skip to content

Commit ac7f7b3

Browse files
committedOct 5, 2022
Added a few CLI game - LAKSHYA BHASIN
1 parent 9629aef commit ac7f7b3

5 files changed

+288
-0
lines changed
 

‎Blackjack.py

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
logo="""
2+
.------. _ _ _ _ _
3+
|A_ _ |. | | | | | | (_) | |
4+
|( \/ ).-----. | |__ | | __ _ ___| | ___ __ _ ___| | __
5+
| \ /|K /\ | | '_ \| |/ _` |/ __| |/ / |/ _` |/ __| |/ /
6+
| \/ | / \ | | |_) | | (_| | (__| <| | (_| | (__| <
7+
`-----| \ / | |_.__/|_|\__,_|\___|_|\_\ |\__,_|\___|_|\_\\
8+
| \/ K| _/ |
9+
`------' |__/
10+
"""
11+
import random
12+
13+
print(logo)
14+
cards=[11,2,3,4,5,6,7,8,9,10,10,10,10]
15+
16+
player=[]
17+
computer=[]
18+
19+
player_sum=0
20+
computer_sum=0
21+
22+
player.append(random.choice(cards))
23+
24+
25+
rand = random.choice(cards)
26+
if (rand == 11 and rand + computer_sum > 21):
27+
player.append(1)
28+
else:
29+
player.append(rand)
30+
31+
32+
computer.append(random.choice(cards))
33+
34+
35+
randco = random.choice(cards)
36+
if (rand == 11 and rand + computer_sum > 21):
37+
computer.append(1)
38+
else:
39+
computer.append(rand)
40+
41+
player_sum+=player[0]+player[1]
42+
computer_sum+=computer[0]+computer[1]
43+
44+
while(player_sum<=21):
45+
print(f"Your cards : {player} ,current score : {player_sum}")
46+
print(f"Computer's first card : {computer[0]}")
47+
48+
accept=input("Type y to get another card , Type n to pass : ")
49+
if(accept=='y'):
50+
rand=random.choice(cards)
51+
if(rand==11 and rand+player_sum>21):
52+
player_sum+=1
53+
player.append(1)
54+
else:
55+
player_sum+=rand
56+
player.append(rand)
57+
else:break
58+
59+
if player_sum>21:
60+
print(f"Your cards : {player} ,current score : {player_sum}")
61+
print("You Lost")
62+
exit()
63+
64+
while computer_sum<player_sum:
65+
rand=random.choice(cards)
66+
if (rand == 11 and rand + computer_sum > 21):
67+
computer_sum += 1
68+
computer.append(1)
69+
else:
70+
computer_sum += rand
71+
computer.append(rand)
72+
73+
if computer_sum>21 or player_sum>computer_sum :
74+
print(f"Your cards : {player} ,Your score : {player_sum}")
75+
print(f"Computer cards : {computer} ,Computer score : {computer_sum}")
76+
77+
print("You Won")
78+
exit()
79+
if(computer_sum==player_sum):
80+
print(f"Your cards : {player} ,Your score : {player_sum}")
81+
print(f"Computer cards : {computer} ,Computer score : {computer_sum}")
82+
83+
print("Draw!!")
84+
exit()
85+
86+
if(computer_sum>player_sum):
87+
print(f"Your cards : {player} ,Your score : {player_sum}")
88+
print(f"Computer cards : {computer} ,Computer score : {computer_sum}")
89+
90+
print("You Lost")
91+
exit()

‎Guessnumber.py

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import random
2+
number=random.randint(1,100)
3+
4+
5+
def guessNUmber(number, num , level):
6+
7+
while level!=1:
8+
if(num>number):
9+
print("Too High")
10+
else:print("Too Low")
11+
level-=1
12+
print(f"YOU have {level} attemps left")
13+
num = int(input("Guess the number : "))
14+
15+
if(num==number):print(f"YOU GUESSED IT CORRECT IT WAS {num}")
16+
else:print(f"YOU GUESSED IT WRONG IT WAS {number}")
17+
18+
print("choose the level of game 'hard' or 'easy'")
19+
level = input().lower()
20+
21+
while True:
22+
23+
24+
if(level!="hard" and level!="easy"):
25+
print("Invalid Choice")
26+
else:break
27+
28+
print("choose the level of game 'hard' or 'easy'")
29+
level = input().lower()
30+
31+
print("I am thinking of a number betwen 1-100. \n ")
32+
num = int(input("Guess the number : "))
33+
34+
if level == "hard":
35+
guessNUmber(number, num, 5)
36+
elif level == "easy:":
37+
guessNUmber(number, num, 10)

‎HangmanGame.py

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
import random
2+
3+
stages = ['''
4+
+---+
5+
| |
6+
O |
7+
/|\ |
8+
/ \ |
9+
|
10+
=========
11+
''', '''
12+
+---+
13+
| |
14+
O |
15+
/|\ |
16+
/ |
17+
|
18+
=========
19+
''', '''
20+
+---+
21+
| |
22+
O |
23+
/|\ |
24+
|
25+
|
26+
=========
27+
''', '''
28+
+---+
29+
| |
30+
O |
31+
/| |
32+
|
33+
|
34+
=========''', '''
35+
+---+
36+
| |
37+
O |
38+
| |
39+
|
40+
|
41+
=========
42+
''', '''
43+
+---+
44+
| |
45+
O |
46+
|
47+
|
48+
|
49+
=========
50+
''', '''
51+
+---+
52+
| |
53+
|
54+
|
55+
|
56+
|
57+
=========
58+
''']
59+
lives = 6
60+
word_list = ["baboon", "delhi", "adamantium", "dehradun"]
61+
# choosing a random word from the list
62+
word = random.choice(word_list);
63+
print(f"The chosen word is {word}")
64+
blank_list = []
65+
66+
for i in range(len(word)):
67+
blank_list += "_"
68+
end_game=False
69+
while end_game == False:
70+
guess = input("Guess a letter\n")
71+
72+
if guess not in word:
73+
lives=lives-1
74+
else:
75+
for i in range(len(word)):
76+
if word[i]==guess:
77+
blank_list[i]=guess
78+
79+
if lives==0 or "_" not in blank_list:
80+
end_game=True
81+
82+
# Clear.clear()
83+
for i in blank_list:
84+
print(i,end=" ")
85+
print(stages[lives])
86+
87+
if(lives==0):print("YOU LOSE!!")
88+
else :print("YOU WON!!")

‎PasswordGenerator.py

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
#Password Generator Project
2+
import random
3+
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
4+
'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x',
5+
'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
6+
'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
7+
'W', 'X', 'Y', 'Z']
8+
numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
9+
symbols = ['!', '#', '$', '%', '&', '(', ')', '*', '+']
10+
11+
print("Welcome to the PyPassword Generator!")
12+
13+
14+
no_letters=int(input("How many letters would you like to use in password?\n"))
15+
no_symbols=int(input("How many symbols would you like? \n"))
16+
no_numbers=int(input("How many numbers would you like? \n"))
17+
18+
19+
20+
21+
def easy_version():
22+
password = ""
23+
for i in range(no_letters):
24+
ran=random.randint(0,len(letters))
25+
password+=letters[ran]
26+
for i in range(no_numbers):
27+
ran=random.randint(0,len(numbers))
28+
password+=str(numbers[ran])
29+
for i in range(no_symbols):
30+
ran=random.randint(0,len(symbols))
31+
password+=str(symbols[ran])
32+
print(password)
33+
34+
def hard_version():
35+
password_list=[]
36+
password=""
37+
for i in range(no_letters):
38+
ran=random.randint(0,len(letters)-1)
39+
password_list+=letters[ran]
40+
for i in range(no_numbers):
41+
ran=random.randint(0,len(numbers)-1)
42+
password_list+=str(numbers[ran])
43+
for i in range(no_symbols):
44+
ran=random.randint(0,len(symbols)-1)
45+
password_list+=str(symbols[ran])
46+
47+
random.shuffle(password_list)
48+
for i in password_list:
49+
password+=i
50+
51+
print(password)
52+
53+
54+
hard_version()
55+
56+

‎RockPaperScissors.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import random
2+
3+
randomInteger=random.randint(0,2)
4+
userInput=int(input("What do you choose ? Type 0 for Rock,1 for Paper or 2 for Scissors\n"))
5+
if(userInput!=0 and userInput!=1 and userInput!=2):
6+
print("Wrong choise")
7+
exit()
8+
9+
if(userInput==randomInteger):
10+
print("DRAW!!!")
11+
elif (userInput==randomInteger-1 or (userInput==2 and randomInteger==0)):
12+
print("Computer Won")
13+
elif (randomInteger==userInput-1 or (randomInteger==2 and userInput==0)):
14+
print("YOU WON!!!")
15+
print(userInput)
16+
print(f"computer choose {randomInteger}")

0 commit comments

Comments
 (0)
Please sign in to comment.