# 使用方括号创建一个列表

# 用len()计算列表中元素的数量

# 用max()和min()找出最大值和最小值

# 用count()计算出列表中某个值出现的次数

a_list = [1, 2, 3]

print("Output #58: {}".format(a_list))

print("Output #59: a_list has {} elements.".format(len(a_list)))

print("Output #60: the maximum value in a_list is {}.".format(max(a_list)))

print("Output #61: the minimum value in a_list is {}.".format(min(a_list)))

another_list = ['printer', 5, ['star', 'circle', 9]]

print("Output #62: {}".format(another_list))

print("Output #63: another_list also has {} elements.".format

(len(another_list)))

print("Output #64: 5 is in another_list {} time.".format(another_list.count(5)))

这个示例展示了如何创建两个简单列表, a_list 和 another_list 。将元素放在方括号之间就可以创建列表。 a_list 包含数值 1、2 和 3。 another_list 包含一个字符串 printer 、一个数值 5 以及一个包含了两个字符串和一个数值的列表。

这个示例还展示了如何使用 4 种列表函数: len 、 min 、 max 和 count 。 len 返回列表中元素的个数。 min 和 max 分别返回列表中的最小值和最大值。 count 返回列表中某个元素出现的次数。