Created
December 21, 2019 15:47
-
-
Save FerdinaKusumah/a075443b58e1278cc6ee886c0dac4f7b to your computer and use it in GitHub Desktop.
Underscore Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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