Python 列表操作:输出和排序示例
Python 列表操作示例
本示例演示了如何使用 Python 创建一个列表,并进行输出和排序操作。
步骤 1:创建列表 首先,创建一个名为'test'的列表,列表中的数据依次为 -1, 5, 34, 7, 8, 12, 10。
test = [-1, 5, 34, 7, 8, 12, 10]
步骤 2:输出列表数据 使用循环遍历列表,依次输出列表中的每个元素。
# 输出列表中的数据
for num in test:
print(num, end=' ')
print()
步骤 3:对列表进行升序排序
使用 sort() 方法对列表进行升序排序。
# 将列表中的数据升序排序并输出
test.sort()
for num in test:
print(num, end=' ')
print()
完整代码:
test = [-1, 5, 34, 7, 8, 12, 10]
# 输出列表中的数据
for num in test:
print(num, end=' ')
print()
# 将列表中的数据升序排序并输出
test.sort()
for num in test:
print(num, end=' ')
print()
输出结果:
-1 5 34 7 8 12 10
-1 5 7 8 10 12 34
原文地址: https://www.cveoy.top/t/topic/deuO 著作权归作者所有。请勿转载和采集!