标签:
1. range()函数的使用:
a - range(n)为0~n-1
b - range(m,n) 为 m~n-1
notice: 均不包含n,即类似左闭右开的区间形式 [... ...)
2. import ... 与 from ... import * 的区别:
example -
import numpy as np a = np.array([1, 2, 3, 4])
from numpy import *
a = array([1, 2, 3, 4])
标签:
原文地址:http://www.cnblogs.com/universe42/p/4483993.html