Joint Function In Python

 list= ["Aryan", "Is", "Smart", "Dmart"]

# for item in list:
# print(item, "and", end=" ")
a= " , ".join(list)

print(a, "These are by Aryan")

Comments

Popular posts from this blog

Pickle Module

Python File IO Basics