Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 263 Bytes

File metadata and controls

20 lines (11 loc) · 263 Bytes

python

python 安装

mac 默认已安装python,

直接进入终端输入: pip install requests 如果安装的是python3就使用: pip3 install requests

python 使用

  • 深拷贝
import copy

newCopy = copy.deepClone(originData)