a = ["Pharma", "co", "engineering"] print(" ".join(a)) #note there will be a space between these (i.e., Pharma co engineering #note if you use print(“”.join(a)) then it will become Pharmacoengineering. |
a = ["Pharma", "co", "engineering"] print(" ".join(a)) #note there will be a space between these (i.e., Pharma co engineering #note if you use print(“”.join(a)) then it will become Pharmacoengineering. |