[Python] 문법(Tuple~

두꺼비·2022년 1월 11일
2
post-custom-banner

Tuple 컴마 주의하기

thistuple = ("apple",)
print(type(thistuple))

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

위 - typle
아래 - str


profile
두꺼비는 두껍다

0개의 댓글