python 数据结构(Data Structure)

import pandas as pd import numpy as np import matplotlib.pyplot as plt 1、Data Structure 1.List 列表是Python自带的数据结构,是一个按照定顺序存储对象的数据结构。一般经过索引访问列表,索引从0开始。html (1)修改列表:给列表赋值 x = [1,1,1] x[1] = 2 #使用索引法给特定位
相关文章
相关标签/搜索