2.Python基础篇-执行第一个python程序

命令行执行python代码

C:\Users\15801>python  # 直接输入python为查看python版本
Python 3.8.10 (tags/v3.8.10:3d8993a, May  3 2021, 11:48:03) [MSC v.1928 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()  # 退出,返回到命令行

C:\Users\15801>python D:\hello.py # 使用python命令执行python程序


C:\Users\15801>python2 D:\hello.py # 如果电脑上装了python2和python3,则可以用这个写法表示使用指定python版本,执行python程序

 

posted @ 2024-08-15 11:31  邵杠杠  阅读(9)  评论(0编辑  收藏  举报