Python Classwork #5 (RandomCards)
05) A standard deck of 52 playing cards is divided into four suits
    (clubs, diamonds, hearts, spades), each consisting of 13 ranked
    cards.  The diamonds and hearts suits are red, while the clubs and
    spades are black.  Each suit contains three "face" cards (a jack,
    queen, and king), along with ten "pip" cards with ranks numbered
    from one to ten (with the "one" card being renamed the "ace").  For
    purposes of this assignment, the ace card has a rank of 1, the jack
    has a rank of 11, the queen's rank is 12, and the king's rank is 13.

    Write a Python program that, every time it is run, first asks the
    user how many cards should be drawn, and then "randomly" chooses
    and displays the appropriate number of cards.  Since your program
    is simulating drawing the cards from a single deck, no duplicate
    cards should be displayed.

    For this assignment, you must store the 13 ranks in a tuple, and
    the 4 suits in a separate tuple.  To choose a card, your program
    should randomly choose both a rank and a suit, and then display
    the "chosen" card to the user in the format shown below.  Make
    sure the first letter of each rank and suit is capitalized.

    The output from your program should look exactly like the example
    output shown below.  (Note "card" vs "cards" for example run #3.)
    You may assume that the user will always enter an integer from
    1 to 52, and you may put all of your code into the main area of
    the program.  For this assignment, the 'randint' function is the
    only function that you may import and use.


    Example Program Run #1
    ----------------------
    How many playing cards should be drawn from a standard deck? 3

    Your chosen cards:
      Four of Spades
      Jack of Hearts
      Seven of Clubs


    Example Program Run #2
    ----------------------
    How many playing cards should be drawn from a standard deck? 8

    Your chosen cards:
      King of Diamonds
      Two of Hearts
      Queen of Hearts
      Ace of Spades
      Five of Clubs
      Nine of Diamonds
      Five of Hearts
      Ace of Clubs


    Example Program Run #3
    ----------------------
    How many playing cards should be drawn from a standard deck? 1

    Your chosen card:
      Six of Diamonds


  ADVANCED OPTION FOR CLASSWORK #5
    When showing the drawn cards to the user, display them in
    numerical order by rank, and within each rank show the cards
    in alphabetical order by suit.