lt = ["1", 2, 5, True, 4.3, complex(4)]
for v in lt:
if type(v) is bool:
continue
print("continue type:", v, type(v))
print("multiply by 2", v * 3)
에서 출력을 했을 때
continue type: 1 <class 'str'>
multiply by 2 111
...
이렇게 나오는데 "1"은 문자형인데 왜 3을 곱해서 111이 나오는 건가요?