千家信息网

python命令行模式怎么用

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,这篇文章主要介绍了python命令行模式怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。1、使用cmd打开命令行窗口。2、在输入p
千家信息网最后更新 2025年01月19日python命令行模式怎么用

这篇文章主要介绍了python命令行模式怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

1、使用cmd打开命令行窗口。

2、在输入python时,进入python交互模式。

3、输入exit(),退出交互模式,在命令行模式下运行.py程序。

实例

C:\Users\86178>pythonPython 3.8.3 (default, Jul  2 2020, 17:30:36) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32Type "help", "copyright", "credits" or "license" for more information.>>> editTraceback (most recent call last):  File "", line 1, in NameError: name 'edit' is not defined>>> exit() C:\Users\86178>pythonPython 3.8.3 (default, Jul  2 2020, 17:30:36) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32Type "help", "copyright", "credits" or "license" for more information.>>> hello.pyTraceback (most recent call last):  File "", line 1, in NameError: name 'hello' is not defined>>> exit() C:\Users\86178>python hello.pupython: can't open file 'hello.pu': [Errno 2] No such file or directory C:\Users\86178>python hello.pypython: can't open file 'hello.py': [Errno 2] No such file or directory C:\Users\86178>cd /d文件名、目录名或卷标语法不正确。 C:\Users\86178>cd /d D: D:\>python hello.pyhelloD:\>pythonPython 3.8.3 (default, Jul  2 2020, 17:30:36) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32Type "help", "copyright", "credits" or "license" for more information.>>> hello.pyTraceback (most recent call last):  File "", line 1, in NameError: name 'hello' is not defined>>>

感谢你能够认真阅读完这篇文章,希望小编分享的"python命令行模式怎么用"这篇文章对大家有帮助,同时也希望大家多多支持,关注行业资讯频道,更多相关知识等着你来学习!

0