Trying to see about combining entries in two lists.
I used the site function to scrape a list of medication names as one list and another list for the dosages.
names = ["Aspirin", "Crestor", ...]
dosage = ["81mg po od", 10mg po od", ...]
I would like to see if I can combine these into a single list:
meds = ["Aspirin 81mg po od", "Crestor 10mg po od", ... ]