Join function in python.
Join function in python.
abc = ["Technical Guruji", "A2motivation",
"Trakin tech", "Aastha Creations", "Techza Gaming"]
# for index, item in enumerate(abc):
# print(item, "and", end=" ")
# a = "and".join(abc)
a = " and ".join(abc)
print(f"{a}many more are very famous youtubers..")
Comments
Post a Comment