Python итерация через кортеж

# Using a for loop to iterate through a tuple
for name in ('John', 'Kate'):
    print("Hello", name)
SAMER SAEID