fork download
  1. lst1 = ['hello', 'hi', 'sup']
  2. lst2 = ['bye', 'cya', 'goodbye']
  3.  
  4. for item in [lst1, lst2]:
  5. print 'Your options are: -' + ' -'.join(item)
Success #stdin #stdout 0s 9024KB
stdin
Standard input is empty
stdout
Your options are: -hello -hi -sup
Your options are: -bye -cya -goodbye