Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions BlackJack_game/blackjack.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
sleep(2)
print("Lets Check How Lucky You Are Wish You All The Best")
sleep(2)
print("Loading---")
print("Loading...")
sleep(2)

print("Still Loading---")
print("Still Loading...")
sleep(2)
print(
"So You Are Still Here Not Gone I Gave You Chance But No Problem May Be You Trust Your Fortune A Lot \n Lets Begin Then"
Expand Down Expand Up @@ -105,7 +105,7 @@ def dealer_choice():

while sum(p_cards) < 21:
# to continue the game again and again !!
k = input("Want to hit or stay?\n Press 1 for hit and 0 for stay ")
k = input("Want to hit or stay?\n Press 1 for hit and 0 for stay: ")
if k == "1": # Amended 1 to a string
random.shuffle(deck)
p_cards.append(deck.pop())
Expand Down
2 changes: 1 addition & 1 deletion facebook id hack.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def function(email, passw, i):
email = input("Enter Email/Username : ")

print("\nTarget Email ID : ", email)
print("\nTrying Passwords from list ...")
print("Trying Passwords from list ...")

i = 0
while file:
Expand Down
Loading