Skip to content

Instantly share code, notes, and snippets.

@FerdinaKusumah
Created December 21, 2019 15:47
Show Gist options
  • Save FerdinaKusumah/a075443b58e1278cc6ee886c0dac4f7b to your computer and use it in GitHub Desktop.
Save FerdinaKusumah/a075443b58e1278cc6ee886c0dac4f7b to your computer and use it in GitHub Desktop.
Underscore Python
>>> def function(class):
File "<stdin>", line 1
def function(class):
^
SyntaxError: invalid syntax
>>> def function(class_):
... pass
...
>>>
>>> def make_object(name, class):
SyntaxError: "invalid syntax"
>>> def make_object(name, class_):
... pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment