基于Python3.x。
一:HelloWorld
print("Hello World")
二:标识符
和Java无多大区别。
- 第一个字符必须是字母表中字母或下划线'_'。
- 标识符的其他的部分有字母、数字和下划线组成。
- 标识符对大小写敏感。
- 有效标识符名称的例子有 i 、 __my_name 、 name_23 和 a1b2_c3 。
- 无效标识符名称的例子有 2things 、 this is spaced out 和 my-name 。
三:保留字
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']```
# 四:注释
![注释.png](http://upload-images.jianshu.io/upload_images/2954781-302493e4d53788d5.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
# 五:缩进
> python使用缩进来表示代码块,不需要使用大括号{ }。
缩进的空格数是可变的,但是同一个代码块的语句必须包含相同的缩进空格数。
正确缩进例子
```python
if True:
print("True")
else:
print("False")
错误缩进例子,运行会导致报错。
if True:
print("True")
else:
print("False")
print("False") # 缩进不正确 , IndentationError: unindent does not match any outer indentation level
六:数据类型
变量可以有不同类型的值,称之为数据类型。基本数据类型是数字和字符串。除了基本类型,还有其他自己定义的类,跟Java相似。
- 数字
- python中数有四种类型:整数、长整数、浮点数和复数。
- 整数, 如 1
- 长整数 是比较大的整数
- 浮点数 如 1.23、3E-2
- 复数 如 1 + 2j、 1.1 + 2.2j
- 字符串
- python中单引号和双引号使用完全相同。
- 使用三引号('''或""")可以指定一个多行字符串。
- 转义符 ''
- 自然字符串, 通过在字符串前加r或R。 如 r"this is a line with \n" 则\n会显示,并不是换行。
- python允许处理unicode字符串,加前缀u或U, 如 u"this is an unicode string"。
- 字符串是不可变的。
- 按字面意义级联字符串,如"this " "is " "string"会被自动转换为this is string。
七:导入模块
在 python 用 import
或者 from...import
来导入相应的模块。
- 将整个模块(somemodule)导入,格式为:
import somemodule
- 从某个模块中导入某个函数,格式为:
from somemodule import somefunction
- 从某个模块中导入多个函数,格式为:
from somemodule import firstfunc, secondfunc, thirdfunc
- 将某个模块中的全部函数导入,格式为:
from somemodule import *