Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a new file named cards.py ( 2 points ) Make sure that cards.py and assignment 8 . py is in the same directory /

Create a new file named cards.py (2 points) Make sure that cards.py and assignment8.py is in the same directory / folder In cards.py, define a class with the name Card (2 points) Be sure to give it a constructor, it should take in two extra arguments, one for the suite of the card and another for the card's value (numerical). The assignment8.py file is using this yet to be defined constructor of the Card class to populate the Card's initial data. (2 points) Also define a method within the class with the name: get_display_string (2 points) In the get_display_string method, return a string value that will be used to display what Card this is in an easy to read format. As the user, I want to see what suite the card is and if the card's value is over 10, I want the value to be displayed as "Jack", "Queen", "King", "Ace". That is, an 11 will be displayed as "Jack", 12 as "Queen", 13 as "King", and in a special case 1 will be displayed as "Ace" (since there is no "1" card). Values from 2 to 10 can be displayed as a number. I want the suites to be read in some way other than 1,2,3,4; e.g. Clubs, Spades, Hearts, Diamonds. (2 points)
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions