inisialisasi tuple dalam python
# Method 1, convert list to tuple:
values = ['a', 'b', 'c']
tup = tuple(values)
# Method 2:
tup = ('a', 'b', 'c')
Anxious Alligator
# Method 1, convert list to tuple:
values = ['a', 'b', 'c']
tup = tuple(values)
# Method 2:
tup = ('a', 'b', 'c')