1# Declaring the list geek
2geek = ['Geeks', 'Programming', 'Algorithm', 'Article']
3
4# Directly printing the list
5print ("Simple List:", geek)
6
7# Printing the list by join method
8print ('List by using join method: %s' % ', ' .join(geek))
9
10# Direct use of join method
11print ('Direct apply the join method:',(", " .join(geek)))
12