python tips & tricks
# Declaring the list geek
geek = ['Geeks', 'Programming', 'Algorithm', 'Article']
# Directly printing the list
print ("Simple List:", geek)
# Printing the list by join method
print ('List by using join method: %s' % ', ' .join(geek))
# Direct use of join method
print ('Direct apply the join method:',(", " .join(geek)))