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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!