python write function comma separated code example
Example: comma separated variables python
# What you describe is tuple assignment:
a, b = 0, 1
# The above is equivalent to:
a = 0
b = 1
# What you describe is tuple assignment:
a, b = 0, 1
# The above is equivalent to:
a = 0
b = 1