JavaShuo
栏目
标签
python学习笔记2-列表和字典+for循环和while循环+布尔值和四种语句
时间 2021-01-12
标签
python学习总结
python
栏目
Python
繁體版
原文
原文链接
列表 什么是列表 list1 = ['小明',18,1.70] print(list1) 从列表提取单个元素 students = ['小明','小红','小刚'] print(students[0]) 从列表提取多个元素 list2 = [5,6,7,8,9] print(list2[:]) # 打印出[5,6,7,8,9] print(list2[2:]) # 打印出[7,8.9] prin
>>阅读原文<<
相关文章
1.
Python之if语句、for循环和while循环(经典示例)
2.
python的语句2:for循环和while循环
3.
shell-2:while循环和for循环
4.
Python语句和for循环
5.
Python循环语句(for..in,while循环和range()函数)
6.
Python——循环语句for,while
7.
python循环语句(while、for)
8.
Python 循环 while,for语句
9.
python中的while循环和for循环
10.
Python中for循环和while循环
更多相关文章...
•
PHP 循环 - For 循环
-
PHP教程
•
PHP 循环 - While 循环
-
PHP教程
•
Tomcat学习笔记(史上最全tomcat学习笔记)
•
适用于PHP初学者的学习线路和建议
相关标签/搜索
循环
循环器
恶性循环
循环结构
良性循环
分组循环
循环往复
循环赛
循环使用
Python
XLink 和 XPointer 教程
R 语言教程
PHP教程
学习路线
初学者
0
分享到微博
分享到微信
分享到QQ
每日一句
每一个你不满意的现在,都有一个你没有努力的曾经。
最新文章
1.
安装cuda+cuDNN
2.
GitHub的使用说明
3.
phpDocumentor使用教程【安装PHPDocumentor】
4.
yarn run build报错Component is not found in path “npm/taro-ui/dist/weapp/components/rate/index“
5.
精讲Haproxy搭建Web集群
6.
安全测试基础之MySQL
7.
C/C++编程笔记:C语言中的复杂声明分析,用实例带你完全读懂
8.
Python3教程(1)----搭建Python环境
9.
李宏毅机器学习课程笔记2:Classification、Logistic Regression、Brief Introduction of Deep Learning
10.
阿里云ECS配置速记
本站公众号
欢迎关注本站公众号,获取更多信息
相关文章
1.
Python之if语句、for循环和while循环(经典示例)
2.
python的语句2:for循环和while循环
3.
shell-2:while循环和for循环
4.
Python语句和for循环
5.
Python循环语句(for..in,while循环和range()函数)
6.
Python——循环语句for,while
7.
python循环语句(while、for)
8.
Python 循环 while,for语句
9.
python中的while循环和for循环
10.
Python中for循环和while循环
>>更多相关文章<<