标签:pytho end 基本 strstr list pre utf-8 style pop
/* 时间:2018/10/01 目录: 一: list 1 基本用法 二: 字典 1 整型 2 浮点型 三: 集合 */
一: list
1 基本用法
# coding:utf-8 list = [] print(list) print(type(list)) nInt = 12 fFloat = 12.12 bTrue = True bFalse = False strString = "12.12" # 尾部插入 list.append(nInt) list.append(fFloat) list.append(True) list.append(False) list.append(strString) print(list) # 指定插入 list.insert(1, "insert") # 插入位置 - 索引为1 print(list) # 删除尾部 list.pop() print(list) # 指定删除 list.pop(2) # 删除位置 - 索引为1 print(list) # 指定删除 del list[0] # 删除位置 - 索引为0 print(list) # 数据修改 list[0] = 22 print(list)
[] <class ‘list‘> [12, 12.12, True, False, ‘12.12‘] [12, ‘insert‘, 12.12, True, False, ‘12.12‘] [12, ‘insert‘, 12.12, True, False] [12, ‘insert‘, True, False] [‘insert‘, True, False] [22, True, False]
二: 字典
1
三: 集合
标签:pytho end 基本 strstr list pre utf-8 style pop
原文地址:https://www.cnblogs.com/huafan/p/9735916.html