python第一课

1.安装

直接点击运行就可以了

2.python解释器

CPython
当我们从Python官方网站下载并安装好Python 3.5后,我们就直接获得了一个官方版本的解释器:CPython。这个解释器是用C语言开发的,所以叫CPython。在命令行下运行python
就是启动CPython解释器。
Jython
Jython是运行在Java平台上的Python解释器,可以直接把Python代码编译成Java字节码执行。

3.执行

print('hello, world')

C:\work>python hello.py
hello, world
C:\Users\IEUser>python hello.py
python: can't open file 'hello.py': [Errno 2] No such file or directory

直接运行python文件需要如下

#!/usr/bin/env python3
print('hello, world')

4.输入和输出

name = input('please enter your name: ')
print('hello,', name)
C:\Workspace> python hello.py
please enter your name: Michael
hello, Michael

5.基础

Python使用缩进来组织代码块,请务必遵守约定俗成的习惯,坚持使用4个空格的缩进。

在文本编辑器中,需要设置把Tab自动转换为4个空格,确保不混用Tab和空格。

# print absolute value of an integer:   
 a = 100
 if a >= 0:   
       print(a)
else:   
       print(-a)

以#开头的语句是注释,注释是给人看的
语句以冒号:结尾时,缩进的语句视为代码块。

你可能感兴趣的:(python第一课)