pythonでprint()構文エラー どうしても解決方法が分かりません
pythonでどうしてもsyntaxerrorが出てしまう
今日python(ver3.9)の学習を始めたばかりで、早速躓いてしまいました。
色々試しましたが、何も解決しません。
どうか解決方法をご教示いただけませんか。
出ているエラー
print("Hello Python World")
と入力し、コマンドプロンプトで実行しようとしたところ
>>> python hello/py
File "<stdin>", line 1
python hello/py
^
SyntaxError: invalid syntax
と表示されてしまいます。
(因みに、ファイル名はhello.pyで保存先のディレクトリ名がpython)
自分で試したこと
①もう一回半角で入力しなおす→効果なし
②エディタを変えてみる(win10のメモ帳から秀丸エディタ)→効果なし
③対話モードを解除してから、コマンドプロンプトに入力→効果なし
(対話モードを解除するとうまくいったという方法を見たので試してみました。)
>>> quit()
C:\Users\自分>python hello.py
python: can't open file 'C:\Users\螟ァ髫」髮ェ荵ソhello.py': [Errno 2] No such file or directory
こうなってしまうので、もう一度対話モードに直してから実行すると
>>> python hello.py
File "<stdin>", line 1
python hello.py
^
SyntaxError: invalid syntax
と、このように一番最初と同じようなエラーが出ます。
④コマンドプロンプトに入力するときにコマンドをpythonではなくてpyと書いてみる。→効果なし
>>> py hello_python.py
File "<stdin>", line 1
py hello_python.py
^
SyntaxError: invalid syntax
⑤コマンドpython自体を入力しない→効果なし
>>> hello_python.py
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'hello_python' is not defined
…多分これくらい試してみたと思います。
初歩的な質問ですみません、どうかお教えいただけないでしょうか。
0