これは私のテストコードですtest.py
:
str = input("IP: ")
print(str)
実行すると、次のエラーが表示されます。
➜ PingScript git:(master) ✗ python test.py
IP: 1.1.1.1
Traceback (most recent call last):
File "test.py", line 1, in <module>
str = input("IP: ")
File "<string>", line 1
1.1.1.1
^
SyntaxError: invalid syntax
これは、入力として使用1.1.1.1
した場合にのみ発生し、入力として使用した場合には発生しません1.1
。ここで何が起こっているのでしょうか? で解析しようとしましたstr(str)
が、それでも同じエラーが発生します。