回答編集履歴

2

リンク化

2020/02/10 11:32

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -54,7 +54,7 @@
54
54
 
55
55
  ちなみに、「PEP8: Pythonコードのスタイルガイド」には、真偽値変数と True/False を比較するなと書いてあります。
56
56
 
57
- https://pep8-ja.readthedocs.io/ja/latest/
57
+ [https://pep8-ja.readthedocs.io/ja/latest/](https://pep8-ja.readthedocs.io/ja/latest/)
58
58
 
59
59
  > ブール型の値と True や False を比較するのに == を使うのはやめましょう。:
60
60
 

1

PEP8での記述について追記

2020/02/10 11:32

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -49,3 +49,21 @@
49
49
  True
50
50
 
51
51
  ```
52
+
53
+
54
+
55
+ ちなみに、「PEP8: Pythonコードのスタイルガイド」には、真偽値変数と True/False を比較するなと書いてあります。
56
+
57
+ https://pep8-ja.readthedocs.io/ja/latest/
58
+
59
+ > ブール型の値と True や False を比較するのに == を使うのはやめましょう。:
60
+
61
+ > ```
62
+
63
+ 良い: if greeting:
64
+
65
+ 悪い: if greeting == True:
66
+
67
+ もっと悪い: if greeting is True:
68
+
69
+ ```