5 lines
112 B
Python
5 lines
112 B
Python
import numpy as np
|
|
|
|
# 使用第三方包 numpy 进行一些计算
|
|
result = np.sum([1, 2, 3, 4, 5])
|
|
print(result) |