Windows 11系统优化神器:Win11Debloat一键清理让电脑性能飙升 【免费下载链接】Win11Debloat A simple, lightweight PowerShell script that allows you to remove pre-installed apps, disable telemetry, as well as perform various other changes to declutter…
Numpy
1.基本使用
import numpy as np
"""创建"""
a = np.array([[1,2,3],[4,5,6]])
a = np.ones((2,3),dtype=np.int32) # 默认np.float64
a = np.zeros((2,3))
a = np.arange(3,7) # …