私は文字列変数を持っていますtest
.Python 2.xではこれはうまくいきます.
test = raw_input("enter the test")
print test
しかし、Python 3.x では、次のようにします。
test = input("enter the test")
print test
入力文字列sdas
を使用すると、エラーメッセージが表示されます
Traceback (most recent call last):
File "/home/ananiev/PycharmProjects/PigLatin/main.py", line 5, in <module>
test = input("enter the test")
File "<string>", line 1, in <module>
NameError: name 'sdas' is not defined