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])
时间: 2024-10-11 15:04:01