{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "#Milestone Project 2 - Blackjack Game\n", "In this milestone project you will be creating a Complete BlackJack Card Game in Python.\n", "\n", "Here are the requirements:\n", "\n", "* You need to create a simple text-based [BlackJack](https://en.wikipedia.org/wiki/Blackjack) game\n", "* The game needs to have one player versus an automated dealer.\n", "* The player can stand or hit.\n", "* The player must be able to pick their betting amount.\n", "* You need to keep track of the players total money.\n", "* You need to alert the player of wins, losses, or busts, etc...\n", "\n", "And most importantly:\n", "\n", "* **You must use OOP and classes in some portion of your game. You can not just use functions in your game. Use classes to help you define the Deck and the Player's hand. There are many right ways to do this, so explore it well!**\n", "\n", "\n", "Feel free to expand this game-try including multiple players. Try adding in Double-Down and card splits! Remember to you are free to use any resources you want and as always:\n", "\n", "# HAVE FUN!" ] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.10" } }, "nbformat": 4, "nbformat_minor": 0 }