回答編集履歴
1
説明補足
test
CHANGED
@@ -7,3 +7,9 @@
|
|
7
7
|
`if bool(s):` と等価であり、
|
8
8
|
|
9
9
|
`if s.__bool__():` と等価です。
|
10
|
+
|
11
|
+
文字列自身が、自分がFalseかTrueかを判断しています。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
参考: https://docs.python.org/ja/3/library/stdtypes.html#truth
|