I want to print each element separately as follows:
print("current rank is {}".format(card[0])
print("current suit is {}".format(card[1])
I would like to be able to refer to each element singularly as needed but
I’m confused on how to do this correctly.
Any assistance is greatly appreciated,
thank you.
Cogiz