IN PYTHON PLEASE
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:
# 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())
Your code with comments
A screenshot of the execution