Create a list of fortunes from a fortune cookie.
Using the random library, give the user a fortune
Ask the user to add a new fortune to the list
Generate a new fortune, making sure it is NOT one that previously printed!
BONUS: Can you actually get an ascii fortune cookie to display?
Example Output:
This assignment complexity will be all on you. You get to decide how difficult to make it:
Create a deck of cards (doesn't have to be a full deck)
Shuffle the deck (make sure the cards are random)
Deal cards to a player
Show the players hand (don't just display a list. show each card)
Display this in a cool way... be creative
BONUS:
Make a list of lists where you store the card, and it's value, then, add the value in the player's hand to show his total
With ONLY What you know, create the full deck. Shuffle it, deal out all cards evenly to 2 players, and calculate who has the larger value hand
Display the info nicely
Lists and List Methods
Random Module
Strings and String Methods
User Input
If you know how to use them, you MAY use if/else. Stay away from for loops please...