i've got an assignment to write a program that simulates a game of snaps in python but don't know how to get started, your help would be appreciated! Here is the question:
Write a program to allow the simulation of a game of Snap. Assume two humans will play, but the computer
prints out the two cards turned over in each round. Input for each round should be ”Enter” to turn the next
cards. ”exit” to quit the game, or a ”1” or a ”2” to indicate if player one or two called Snap first.
Design your program with three Classes. Use the following classes. A Card, Deck and Hand class. Pointers to
help you write the classes and game will be given in the Practical classes.