Using Python:
Create an object-oriented program converting a Blackjack programfrom procedural to object-oriented. This shouldn’t change thefunctionality of the code, but it should make the code moremodular, reusable, and easier to maintain.
Program Output:
Specifications (Part 1):
– Use a Card class that provides attributes that store the rank,suit, and points for a card. This class should provide a __str__method that returns a string that includes the rank and suit of thecard.
– Use a Deck class that provides for a
OR
OR