标签:
5.1 print和import的更多信息
1. print()3.0之后print不再是语句,而是函数,
>>> print(‘udg‘,12,13) udg 12 13
>>> name=‘yanliang‘ >>> print(name) yanliang
2. import 把某件事当做另外一件事导入
import somemodule
from somemodule import somefunction
from somemodule import somefunction1,somefunction2,somefunction3.。。。
from somemodule import *
(1)为导入的模块提供别名:>>> import math as foo >>> foo.sqrt(4) 2.0
(2)也可以为函数提供别名:>>>from module import function as function1
5.2 赋值魔法
1. 序列解包
(1)多个赋值同时进行:>>> x,y,z=1,2,3 >>> print(x,y,z) 1 2 3
(2)>>> x,y=y,x >>> print(x,y) 2 1
2. 链式赋值
(1)>>> x=y=2 相当于 >>> y=2 >>> x=y
3. 增量赋值
(1)>>> x+=3 类似于C++中的
5.3 语句块:缩排的乐趣
标签:
原文地址:http://www.cnblogs.com/yanliang12138/p/4708940.html