Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. '''function to join strings in a list'''
  2. def cleanup(slist):      
  3.     return ' '.join(slist)      
  4. cleanup(["cat","er","pillar"])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement