Post

@PythonPr On line 3, the right side of the assignment operator is a tuple of (20,30) that is unpacked into x (20) and y (30). So, output is 20, 30.
English

@PythonPr 20, 30 , classic multi value assignment in python or we can also say tuple unpacking.
English


























