python hello world怎么在Windows终端窗口打开
https://blog.csdn.net/weixin_43091089/article/details/99256346在文件夹空白处shift+右键,选择“在此处打开命令窗口”,此时你会发现不仅打开了命令窗口,文件夹路径还直接切换到了当前文件夹的路径,下一步cd命令也可以省略了。
❶ C:> cd Desktop\python_work
❷ C:\Desktop\python_work> dir
hello_world.py
❸ C:\Desktop\python_work> python hello_world.py
Hello Python world!
版权声明:本文为CSDN博主「我叫嘻嘻呵呵」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_43091089/java/article/details/99256346
我按照步骤,完成到最后一步,但是无法执行Hello Python world!
我的是这样的
目录: C:\Users\tong\Desktop\python_work
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2020/7/26 11:49 22 hello_world.py
PS C:\Users\tong\Desktop\python_work> python hello_world.py
PS C:\Users\tong\Desktop\python_work>
打开编辑器,可以run,新手很困惑,求助 重新安装,pat项全沟看看 {:10_266:} 你的 hello_world.py 的文件内容是什么? zltzlt 发表于 2020-7-26 14:38
你的 hello_world.py 的文件内容是什么?
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:43:08) on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> print("hello world")
hello world 是小山啊 发表于 2020-7-26 15:14
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:43:08) on win32
Ty ...
把 hello_world.py 的文件内容修改成这样试试:
print("hello world") 是小山啊 发表于 2020-7-26 15:14
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:43:08) on win32
Ty ...
因为你的程序语法有错,可以参考 6# 的回答 均昊山 发表于 2020-7-26 15:20
重新安装,pat项全沟看看
谢谢 liuzhengyuan 发表于 2020-7-26 16:21
因为你的程序语法有错,可以参考 6# 的回答
谢谢
页:
[1]