Question: 3. Implement a VotingMachine class that can be used for a simple election. Have methods to clear the machine state, to vote for a Democrat,

3. Implement a VotingMachine class that can be used for a simple election. Have methods to clear the machine state, to vote for a Democrat, to vote for a Republican, and to get the tallies for both parties. Use the program below to run your class: 4 pts # Demonstrate the voting machine class. # Create a new voting machine. vm = VotingMachine() # Cast 7 votes. vm.clear() vm.voteDemocrat() vm.voteDemocrat() vm.voteRepublican() vm.voteDemocrat() vm.voteRepublican( vm.voteDemocrat() vm.voteRepublican( # Show the vote tallies. print("Democrats: ", vm.getTalliesD(), "Republicans:", vm.getTalliesR() a) Your code with comments b) A screenshot of the execution
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
