Tuple 컴마 주의하기
thistuple = ("apple",) print(type(thistuple)) #NOT a tuple thistuple = ("apple") print(type(thistuple))
위 - typle 아래 - str