Last active
May 4, 2017 20:04
-
-
Save Lucretiel/36198cade16f2485a872d30cfbeecbab to your computer and use it in GitHub Desktop.
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
# Try appending ?ts=2 to the url of this page. | |
# Then try ?ts=4 | |
# Then ?ts=8 | |
def my_member_function(self, argument): | |
for value in range(10): | |
# Notice how, as the indents shift, all the arguments | |
# to this function stay vertically aligned. | |
self.my_other_func(argument, | |
value, | |
"Third argument") | |
return argument |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment