Skip to content

python运维

python运维

  • 首页

python运维

python运维

  • 首页
2022年 11月 16日

python 累加

  • 未分类
  • admin

num_years = [1, 2, 3, 4, 5]
print(num_years[0])
print(type(num_years[0]))
a = len(num_years)
b = 0
for x in range(a):
    b += x + 1
print(b)

Copyright © 2022