Is there a stylistic rule for calling variables?
For example, variables between different functions with the same destination.
My question is about names in function signatures.
name = 'somevalue1'
path = 'some/value'
process(name, path)
What about the names in the signature? They must be the same.
def process(name, path):
...
Or maybe something like this:
def process(_name, _path)
...
Or
def process(name1, path1)
...
xiΒΊ source
share