• 코드:
​x
 
1
tuple1 = 10, "열", True
2
​
3
print(10 in tuple1)
4
print("아홉" in tuple1)
5
print("아홉" not in tuple1)
6
​
표준입력 & 실행옵션