Python 列表练习



Python 列表练习 1

Python 程序用于查找给定列表中的唯一数字。

L1 = [1, 9, 1, 6, 3, 4, 5, 1, 1, 2, 5, 6, 7, 8, 9, 2]
L2 = []
for x in L1:
   if x not in L2:
      L2.append(x)
print (L2)

它将产生以下输出

[1, 9, 6, 3, 4, 5, 2, 7, 8]

Python 列表练习 2

Python 程序用于查找列表中所有数字的总和。

L1 = [1, 9, 1, 6, 3, 4]
ttl = 0
for x in L1:
   ttl+=x
print ("Sum of all numbers Using loop:", ttl)
ttl = sum(L1)
print ("Sum of all numbers sum() function:", ttl)

它将产生以下输出

Sum of all numbers Using loop: 24
Sum of all numbers sum() function: 24

Python 列表练习 3

Python 程序用于创建一个包含 5 个随机整数的列表。

import random
L1 = []
for i in range(5):
   x = random.randint(0, 100)
   L1.append(x)
print (L1)

它将产生以下输出

[77, 3, 20, 91, 85]
广告