Skip to content

Instantly share code, notes, and snippets.

@Freso
Last active December 10, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Freso/4444824 to your computer and use it in GitHub Desktop.
Save Freso/4444824 to your computer and use it in GitHub Desktop.
Which of these are correct?
def spam(argument2):
this_is_a_very_long([
'this is the first', 'set of items', 'with more items',
'to come in this line', 'like this'
], argument2)
def eggs(argument2):
this_is_a_very_long([
'this is the first', 'set of items', 'with more items',
'to come in this line', 'like this'
], argument2)
def lettuce(argument2):
this_is_a_very_long([
'this is the first', 'set of items', 'with more items',
'to come in this line', 'like this'
], argument2)
def ham(argument2):
this_is_a_very_long([
'this is the first', 'set of items', 'with more items',
'to come in this line', 'like this'
],
argument2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment