Question: PYTHON 2.7 Coin Augment your previous submission with a new class named 'Coin'. Coin should inherit from Die, with the following modifications; The constructor should
PYTHON 2.7
Coin
Augment your previous submission with a new class named 'Coin'. Coin should inherit from Die, with the following modifications;
- The constructor should not take any arguments; a coin always has two sides
- add a flip() method that uses the roll() method from the parent class. If roll returns 1; flip should return "HEADS". If roll returns a 2, flip should return "TAILS"
- Do not override the roll or rollMultiple methods from the parent class
#!/usr/bin/python # Die and Coin classes go here # testing code # please do not edit myCoin = Coin() if myCoin.roll() > 0 and myCoin.roll() < 3: print("test 1 pass") resFlip = myCoin.flip() if resFlip == 'HEADS' or resFlip == "TAILS": print("test 2 pass") Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
