To clone the repository and run it locally, follow these steps:
- Open your terminal or command prompt.
- Navigate to the directory where you want to clone the repository using the cd command.
- Use the git clone command:
https://github.com/EpicNesh26/Python-Blackjack-game.git
- Once the repository is cloned, navigate into the repository directory using the cd command.
- You can now run the script locally. Depending on the programming language, you might need to have the necessary runtime or dependencies installed on your system.
- Execute the script using the appropriate command or interpreter for the specific language. For example, if it's a Python script, you can run it using the python command followed by the script name:
Introduction to Blackjack:
Blackjack, or 21, is a casino card game where players aim to beat the dealer by getting a hand value close to 21 without exceeding it. Number cards are worth their face value, face cards 10 points, and Aces 1 or 11 points
This Python script simulates dealing cards from a 52-card deck. It uses the random module to shuffle the deck, which is a list of cards created from the suits ("Spades," "Clubs," "Hearts," "Diamonds") and ranks ("A," "2"-"10," "J," "Q," "K"). The deal function distributes a specified number of cards. The script shuffles the deck, deals four cards, and determines each card's value, printing the results.
Python-Blackjack-game/Method1.py
Lines 7 to 18 in 684cb2c
This Python script simulates a deck of cards and a dealing function. It uses the random module to shuffle the deck, consisting of suits ("Spades," "Clubs," "Hearts," "Diamonds") and ranks with corresponding values. The deck is built by combining suits and ranks, then shuffled. The deal function returns a specified number of cards from the top of the shuffled deck. The script demonstrates deck creation, shuffling, and card dealing, and prints the dealt card's suit and rank.
Python-Blackjack-game/Method2.py
Lines 6 to 25 in a97b11e
This Python script implements a text-based Blackjack game with several classes:
Card: Represents a playing card with a suit and rank. Deck: Represents a deck of cards, which can be shuffled and dealt. Hand: Represents a hand of cards, managing dealt cards and calculating their value. Game: Manages the overall Blackjack game. 'check_winner' function determines the winner based on the player's and dealer's hand values.
The main part of the script creates a Game object and calls its play method to start the game. The play method prompts the user to enter the number of games to play, then plays each game by dealing two cards to both the player and the dealer, allowing the player to hit or stand, and determining the winner based on the final hand values.
Python-Blackjack-game/BlackJack.py
Lines 48 to 66 in e3245c0