r63 vs r64
......
203203
b = True
204204
print(f"a+b={a+b}")
205205
}}}
206
2가 프린트된다는 사실!
206
2가 프린트된다는 사실! --다른 언어는 몰?루--
207
208
파이썬은 bool이 int의 하위 타입이기에 가능한것.
209
그러니 True == 1이니 1+1 이 되기에 2가 나온다 라는것. 논리값을 숫자로 취급하기에, 가능한것 입니다.
207210
== 관련 토론 ==
208211
* [[https://theseed.io/thread/FlakyPsychedelicAllegedSnails]][*종결]
209212
* [[https://theseed.io/thread/HolisticStatuesqueRainyCamera]][*종결]
......