2025-06-27 10:04:22 +08:00

5 lines
112 B
Python

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