
Help with Python n paste indented code plzz
Class Implementation
a) Implement a class PlayCard with three attributes, rank, suit, and players.
b) Implement an init method with an optional parameter type:
1) Set the default value of rank to "king", suit to "spades" and players to 0.
c) Implement a display method to print the values of rank, suit, and players as the example output below.
d) Instantiate two objects of type PlayCard, bellagio with arguments, "queen", "diamonds" and 10, and mirage without any arguments.
e) Call display() to print rank, suit, and players of bellagio and mirage.
f) Access and print rank of bellagio and rank of mirage.
Example Output
RSP: queen | diamonds | 10
RSP: king | spades | 0
Rank: QUEEN
Rank: KING

Step by stepSolved in 3 steps with 2 images

- can i get answer plzarrow_forwarddef area(side1, side2): return side1 * side2s1 = 12s2 = 6Identify the statements that correctly call the area function. Select ALL that apply. Question options: area(s1,s2) answer = area(s1,s2) print(f'The area is {area(s1,s2)}') result = area(side1,side2)arrow_forwardNote: It`s python coding 1. Class Implementationa) Implement a class Rectangle with two attributes, width and height.b) Implement an init method with an optional parameter type. Set the default value of the attributes of width and height to 1.c) Implement a display method to print the values of width and height.d) Instantiate two objects of type rectangle, one with arguments one without. r1 = Rectangle(4, 5) r2 = Rectangle()e) Call display() to print width and height.Example OutputWidth: 4Height: 5Width: 1Height: 1arrow_forward
- Question #1: Treadmill burned calories Java ProgramA treadmill workout machine provides the following activities: running, walking, and mountainclimbers. The machine uses metabolic equivalents (MET) to measure the amount of energy thatis expended during exercise.Here are the machine different activities and their METS:Running 6 MPH: 10 METSWalking 3 MPH: 4 METSMountain Climbers 3 MPH: 8 METSThe number of calories burned per minute may be estimated using the formula:Energy expenditure (Calories/ Minute) = 0.0175 × MET × Weight (in kilograms).In this question, ywrite a Java program, which:1. Display a welcome message.2. Prompts the user to enter the weight in pounds.3. Prompts the user to enter the running, walking and mountain climbers’ timesrespectively.4. calculates and outputs the calories burned for each activity as well as the total number ofcalories burned.5. Display a farewell message, so that the user knows that the program has terminatednormally, example: Keep up your hard…arrow_forwardWrite a python code for both 1 and 2 use random inputs for each variablearrow_forwardMorse Code (python ) Morse code maps each letter of the alphabet to a series of dashes and dots (a = .-). The list of the Morse code for all English letters (from a to z) is provided below: [".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..","- -","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.-- ","--.."] Your goal here is to implement a function that takes a list of strings as its only parameter (called “words”). Each of the words can be transformed to Morse code by concatenation of a number of the above strings (without spaces). For example, the transformation of “ab” will be “.--...” (“.-” + “-...”). The word “ems” will also have the same transformation “.--...” (“.” + “--” + “...”). In this function, the goal is to return the number of the unique transformations in “words” list. Here is an example (none of this is needed to be printed, the function will only return one integer): Words = [“ab”, “a”, “ems”]Returned value: 2Explanation:…arrow_forward
- x = 3 + numbers[3]++; System.out.println(x); QUESTION 2: Class Rectangle has two data members, length (type of float) and width (type of float). The class Rectangle also has the following: //mutator methods void setlength (float len) } //B. length = len; H accessor methods float getLength() I return length; The following statement creates an array of Rectangle with size 2: Rectangle[] arrayRectangle= new Rectangle[2]; Is it correct if executing the following statements? What is the output? If it is not correct, write the correct one arrayRectangle. setLength (12.59); System.out.printin[rectangle Set.getLength()); arrayRectangle[1].setLength(4.15); System.out.println(arrayRectangle[1].getLength()): QUESTION 3: Use the following int array int[] numbers = { 42, 28, 36, 72, 17, 25, 81, 65, 23, 58} -Open file data.txt to write. to write the values of the array numbers to the file with the y numbers to get the valuesarrow_forward1. After generating rectangles of arbitrary size on a two-dimensional plane, write a program to find the following and show the result. (1) Structure rectangle member composition: center position (x,y), width, height (2) Existence range of rectangle: 0 to 100 in x and y directions (3) Rectangle size: 20≤w,h≤50 (4) Write a program that randomly generates 10 squares and finds Intersection over Union (IoU) between different squares. (Let the two squares be A and B, IoU(A, B) = ?∩?/?∪?) (5) Write the following functions: (a) A function that fills the contents of the structure (b) A function that calculates the IoU of two given rectangles (c) A function that displays the contents of the final structure (d) Other functions necessary for writing programs (6) IoU results between squares are output in the form of 10 X 10 C++ Program source (submit only .c or .cpp)arrow_forwardPython**arrow_forward
- 18. Gas Prices In the student sample program files for this chapter, you will find a text file named Gas Prices.txt. The file contains the weekly average prices for a gallon of gas in the United States, beginning on April 5, 1993, and ending on August 26, 2013. Here is an example of the first few lines of the file's contents: 04-05-1993:1.068 04-12-1993:1.079 04-19-1993:1.079 04-26-1993:1.086 05-03-1993:1.086 and so on... Each line in the file contains the average price for a gallon of gas on a specific date. Each line is formatted in the following way: MM-DD-YYYY: Pricearrow_forwardConstant Assignment • The compiler will issue an error if you try to change the value of a constant • In Java, we use the final modifier to declare a constant final int x= 69; Add x= x+10 What is the result?arrow_forwardArrays of objects. Java programming: How to create and work with an array of objects in Java I wanted to know that supppose that I have 100 employees who are paid on an hourly basis and I need to keep track of their arrival and departure times, and I have also created the class Clock to implement the time of day in a program. I also know that I will use two arraays; one called arrivalTime and the other array called departure time. Each of these arrays will have 100 elements and each element will be a reference variable of Clock type.. For example Clock[] arrival = new Clock[100]. My qeustion is how do I create the objects arrival and departure. Then how could I use the methods f the class clokc. Thank youarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





