Update blackjack.py

This commit is contained in:
SpudGunMan
2025-10-19 16:02:24 -07:00
parent 1f1ed1ca70
commit d81e773c0c
+1 -1
View File
@@ -142,7 +142,7 @@ def success_rate(next_card, player_hand):
success_chance = int((safe_cards / total_cards) * 100)
fail_chance = 100 - success_chance
return f"\n🧠Hit: {fail_chance}% ⛓️‍💥, {success_chance}% 💰."
return f"\n🧠Hit: {fail_chance}% 👎, {success_chance}% 👍"
def hits(obj_de):
new_card = [obj_de.deal_cards()[0][0]]