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