person = ("John", 25, "USA", "Developer", "Python") name, age, *rest = person print(name) # Output: John print(age) # Output: 25 print(rest) # Output: ['USA', 'Developer', 'Python']