回答編集履歴
1
追記
test
CHANGED
@@ -27,3 +27,11 @@
|
|
27
27
|
print(a in [1,2,3]) # -> True
|
28
28
|
|
29
29
|
```
|
30
|
+
|
31
|
+
ご質問のコードだと
|
32
|
+
|
33
|
+
```python3
|
34
|
+
|
35
|
+
if args.number not in ['1','2','3']:
|
36
|
+
|
37
|
+
```
|