import retro from card import Card #this code will be for creating a player to play against or to deal cards and to ask about your next action to continue the game. #this code will be the agent refered to as dealer for now. def deal_first: dealer_hand=[] player1_hand=[] #deal two cards to the dealer one up and one down dealer_show = Card() print("dealer shown card:"+ dealer_show) dealer_hand.append(dealer_show) dealer_hidden = Card() print("▮") dealer_hand.append(dealer_hidden) #deal two cards to the player (both showing since it's one player)