Too bad there arent options to show different colors for names defined in various scopes for python.
Example
def lol(self):
name = [1,2,3]
for n in name:
print n
Let name be one color and let n be a differnet lighter color. Let self be another (class-level) color. Would be nice to make method calls their own color, different from function calls.
Example
def lol(self): name = [1,2,3] for n in name: print n
Let name be one color and let n be a differnet lighter color. Let self be another (class-level) color. Would be nice to make method calls their own color, different from function calls.
Is that possible to make in any other way?