Jenis tuple dalam python

thistuple = ("apple","watermelon","cucumber","muskmelon)
print(type(thistuple))

#NOT a tuple
thistuple = ("apple")
print(type(thistuple))
Programmer of empires