cara menambahkan nomor dalam tuple
a = ('2',)
b = 'z'
new = a + (b,)
Easy Eel
a = ('2',)
b = 'z'
new = a + (b,)