第4章 Python 数据结构
Posted wssys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第4章 Python 数据结构相关的知识,希望对你有一定的参考价值。
本章知识点:
1、元组、列表和字典的创建和使用;
2、元组的遍历; 5、字典特性;
3、元组和列表的"解包"操作;
4、列表的排序、查找和反转;
6、序列的含义;
4.1 元组的结构
4.1.1 元组的创
1 tuple = ("apple") 2 print (tuple[0]) 3 print (type(tuple)) 4 # 输出:a 5 # <class ‘str‘>
1 tuple = ("apple",) 2 print (tuple[0]) 3 print (type(tuple)) 4 # 输出:apple 5 # <class ‘tuple‘>
4.1.2 元组的访问
1 tuple = ("apple", "banana", "grape", "orange") 2 print (tuple[1])
<p
以上是关于第4章 Python 数据结构的主要内容,如果未能解决你的问题,请参考以下文章
python Naive Bayes模型的示例代码。参考:机器学习在行动第4章。
python数据分析实战-第7章-用matplotlib实现数据可视化