python命令行和解释器的区别/input的用法/cd切换目录

进入命令行以后,键入python启动解释器,在解释器中可以进行短小代码,比如数字的计算。

通过ctrl+z退出解释器,回到命令行,键入 python+空格+文件路径\文件名.py,可以进行.py文件的运行。

.py文件在vs code中编辑后保存。

name = input('Please enter your password :')
print('Thank you , your password is ',name)

在命令行中键入

E:\Heinrich\Pythonlearning>python hello.py

就可以调用hello.py文件。

 


input()命令可以灵活使用

name = input()将变量存在name中;

name = input('hello,')将变量存在name中,并在''之后显示。


C:\Users\Lenovo>E:

E:\>cd Heinrich

E:\Heinrich>cd Pythonlearning

E:\Heinrich\Pythonlearning>python hello.py

切换子目录及cd的使用方法如代码所示。

你可能感兴趣的:(Python学习,python)