I have a list of strings that contain a letter and number pair, for example a=["B8", "C1", "B4", "A3"]
I'd like to be able to use this list and combine it (without brackets, commas, or quotation marks) with a base string "You have" in a print statement to tell the user You have B8 C1 B4 A3
It doesn't seem possible to do this using the .join() and .append() methods.