Shuffle the deck, then deal two hands. dCardNames =…

Question Answered step-by-step Shuffle the deck, then deal two hands. dCardNames =… Shuffle the deck, then deal two hands.  dCardNames = [‘2′,’3′,’4′,’5′,’6′,’7′,’8′,’9′,’10’,’J’,’Q’,’K’,’A’]dCardValues = [‘2′,’3′,’4′,’5′,’6′,’7′,’8′,’9′,’10’,’10’,’10’,’10’,’11’]dSuits = [“Clubs”,”Spades”,”Diamonds”,”Hearts”]# Build a two dimensional deck with Cards suits and values.aCards = [[” for i in range(52)] for j in range(3)]i = 0n = 0while i < 13:aCards[0][i] = dCardNames[i]aCards[0][i + 13] = dCardNames[i]aCards[0][i + 26] = dCardNames[i]aCards[0][i + 39] = dCardNames[i]aCards[1][i] = dSuits[0]aCards[1][i + 13] = dSuits[1]aCards[1][i + 26] = dSuits[2]aCards[1][i + 39] = dSuits[3]aCards[2][i] = dCardValues[i]aCards[2][i + 13] = dCardValues[i]aCards[2][i + 26] = dCardValues[i]aCards[2][i + 39] = dCardValues[i]i = i + 1 i = 0while i < 52:print (aCards[0][i], " ", aCards[1][i], " ", aCards[2][i])i = i + 1 Computer Science Engineering & Technology Python Programming CST 161 Share QuestionEmailCopy link Comments (0)