1.已知一个数字列表,求列表中心元素。
2.已知一个数字列表,求所有元素和。
scores = [1,2, 3, 4, 5, 6]
y = 0
for x in scores:
y += x
print(y)
3.已知一个数字列表,输出所有奇数下标元素。
scores = [1, 58, 3, 34, 5, 45]
for x in range(1,len(scores),2):
print(scores[x])
4.已知一个数字列表,输出所有元素中,值为奇数的元素。
scores = [1, 58, 3, 34, 5, 45]
for x in scores:
if x & 1 != 0:
print(x)
5.已知一个数字列表,将所有元素乘二。
例如:nums = [1, 2, 3, 4] —> nums = [2, 4, 6+, 8]
nums = [1, 2, 3, 4