We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb4401b + 43b18c6 commit b45390eCopy full SHA for b45390e
bot/resources/tags/or-gotcha.md
@@ -17,6 +17,6 @@ if favorite_fruit == 'grapefruit' or favorite_fruit == 'lemon':
17
print("That's a weird favorite fruit to have.")
18
19
# ...or like this.
20
-if favorite_fruit in ('grapefruit', 'lemon'):
+if favorite_fruit in ['grapefruit', 'lemon']:
21
22
```
0 commit comments