Run
nums = (100, 200, 300) # Tuple unpacking num_1, num_2 = nums print(f"num_1 is {num_1}") print(f"num_2 is {num_2}")
Output