Python 3 Data Types All In One
Python 3 Data Types All In One
Python 3.x
https://github.com/xgqfrms/Python-3.x-All-In-One
Data Types — Python 3.9.5 documentation
https://docs.python.org/3/library/datatypes.html
https://docs.python.org/zh-cn/3/library/datatypes.html
https://docs.python.org/3/library/stdtypes.html
https://docs.python.org/zh-cn/3/library/stdtypes.html
List
列表,类似 js 数组
#!/usr/bin/python3
# 定义 List 列表
list = [ 'xgqfrms', 985 , 3.14, 'eric', 211 ];
tinylist = [2021, 'webfullstack'];
# 输出完整列表, print(var, , '\n'); 换行
print (list, '\n');
# ['xgqfrms', 985, 3.14, 'eric', 211]
# 输出列表第一个元素
print (list[0], '\n');
# xgqfrms
# 从第二个开始输出到第三个元素, 截取 List[startIndex, endIndex] (左闭右开)
print (list[1:3], '\n');
# [985, 3.14]
# 输出从第三个元素开始的所有元素
print (list[2:], '\n');
# [3.14, 'eric', 211]
# 输出两次列表,复制,double
print (tinylist * 2, '\n');
# [2021, 'webfullstack', 2021, 'webfullstack']
# 连接列表, 合并,拼接 List, join
print (list + tinylist, '\n');
# ['xgqfrms', 985, 3.14, 'eric', 211, 2021, 'webfullstack']
Dict
字典,类似 js Map
Set
集合,类似 js Set
Python 3 官方教程
https://docs.python.org/3.9/tutorial/index.html
https://docs.python.org/zh-cn/3.9/tutorial/index.html
refs
https://www.runoob.com/python3/python3-data-type.html
https://realpython.com/python-data-types/
https://www.programiz.com/python-programming/variables-datatypes
https://www.w3schools.com/python/python_datatypes.asp
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/14824878.html
未经授权禁止转载,违者必究!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)
2020-05-29 auto responsive rem
2020-05-29 codewars
2019-05-29 git & github & git clone & 'git clone' failed with status 128
2019-05-29 github & markdown & image layout
2019-05-29 Linux shell command copy file All In One
2019-05-29 React documentation
2018-05-29 how to create a javascript components framework using HTML5, CSS3, ES6 All In One