一、PyCharm集成开发环境
1、Python HelloWorld
python源程序:
- python就是存放python代码的文本文件;
- 扩展名必须以.py结尾;
演练步骤:
- 找到自己电脑中一个目录c:\file目录;
- 在file目录下新建了一个文本文件hello.py;
- 用记事本打开这个文件文件,如果以下内容;
print("hello world")
print("hello python")
- 保存退出;
- 打开cmd;
- 在命令行输入python hello.py;
python源程序:
演练步骤:
print("hello world")
print("hello python")