第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‘>
View Code

 

技术分享图片
1 tuple = ("apple",)
2 print (tuple[0])
3 print (type(tuple))
4 # 输出:apple
5 #      <class ‘tuple‘>
View Code

 

4.1.2 元组的访问

技术分享图片
1 tuple = ("apple", "banana", "grape", "orange")
2 print (tuple[1])
View Code

 

 

 

 

<p

 

以上是关于第4章 Python 数据结构的主要内容,如果未能解决你的问题,请参考以下文章

第4章 Python 数据结构

python Naive Bayes模型的示例代码。参考:机器学习在行动第4章。

python数据分析实战-第7章-用matplotlib实现数据可视化

《python基础教程》第4章字典:当索引不好用时 读书笔记

第4章 JIT编译器

第 1 章 引言 Python机器学习基础教程