32.循环和列表——for、[ ]
文章目录
- 前言
- 一、列表
- 二、Atom文本编辑器
- 三、运行Python程序
- 总结
前言
将if语句和布尔表达式结合起来可以让程序做一些智能化的事情。使用for循环来创建和打印各种各样的列表。
一、列表
在开始使用for循环之前,需要在某个位置存放循环的结果。最好的办法是使用列表(list),顾名思义,他就是一个从头到尾按顺序存放东西的容器。创建列表:
hairs = ['brown', 'blond', 'red']
eyes = ['brown', 'blue', 'green']
weights = [1, 2, 3, 4]
# 创建二维列表
a = [[1, 2, 3], [4, 5, 6]]
要做的是以左方括号" [ “开头"打开"列表,然后写入列表中的元素,用逗号隔开,就和函数的参数一样,最后需要用右方括号” ] "表明列表结束。Python接收这个列表以及里边所有的内容,将其赋给一个变量。
二、Atom文本编辑器
the_count = [1, 2, 3, 4, 5]
fruits = ["apples", "oranges", "pears", "apricots"]
change = [1, 'pennies', 2, 'dimes', 3, 'quarters']
# this first kind of for-loop goes through a list
for number in the_count:
print(f"This is count {number}.")
# same as above
for fruit in fruits:
print(f"A fruit of type: {fruit}.")
# also we can go through mixed lists too
# notice we have to use {} since we don't know what's in it
for i in change:
print(f"I got {i}.")
# we can also build lists, first start with an empty one
elements = []
# then use the range function to do 0 to 5 counts
for i in range(0, 6):
print(f"Adding {i} to the list.")
# append is a function that lists undersand
# .append( ) 在列表的尾部追加元素
elements.append(i)
# now we can print them out too
for i in elements:
print(f"Element was: {i}.")
(1) range()可创建一个整数列表,一般用在for循环中:
range(start, stop[, step])
start表示计数从start开始, 默认是从0开始, range(5)等价于range(0, 5)
stop表示计数到stop结束, 但不包括stop, range(0, 5)是[0, 1, 2, 3, 4]没有5
step表示步长, 默认为1, range(0, 5)等价于range(0, 5, 1)
(2) 列表和数组取决于语言和实现方式,从经典意义上理解,列表和数组是不同的,因为它们的实现方式不同。在Ruby语言中列表和数组都叫做数组,而在Python中又叫做列表。
(3) for循环使用未定义的变量,其实在开始时这个变量就被定义了,每次循环碰到它的时候,它都会被重新初始化为当前循环中的元素值。
三、运行Python程序
在Window上键入Python就可以看到结果。
python ex32.py
总结
以上内容介绍了Python的循环和列表,有关Python、数据科学、人工智能等文章后续会不定期发布,请大家多多关注