Python语法
Python语法常见的一些语法。
<1> 基于列表构造字典
- 先创建两个列表,其中一个作为字典的键,另一个作为字典的值。
1 | country = ['China', 'India', 'Japan'] |
- 在上面的基础上天剑
if
判断控制。
1 | dic_1 = {country[i]: population[i] for i in range(len(country)) if i == 1} |
<2> Python语言没有一元增量(x++)或递减(x–)
1 | x = 1 |
<3> 遍历列表元素
1 | animals = ['cat', 'dog', 'monkey'] |
使用enumerate
函数遍历一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中。
enumerate函数语法,如下:
1 | enumerate(sequence, [start=0]) |
sequence – 一个序列、迭代器或其他支持迭代对象。
start – 下标起始位置。
1 | seasons = ['Spring', 'Summer', 'Fall', 'Winter'] |
0 Spring
-–
1 Summer
-–
2 Fall
-–
3 Winter
-–
参考信息
https://www.numpy.org.cn/article/basics/python_numpy_tutorial.html#%E5%AE%B9%E5%99%A8-containers
原文作者: Billy & Barney
原文链接: https://liangbilin.github.io/2020/03/06/Billy--Python复合语法/
版权声明: 转载请注明出处(必须保留作者署名及链接)