python练习-生成100个2位随机正整数
作者:互联网
# 题目描述:用Python生成100个2位随机正整数
# 题目要求:按每行10个输出,并求出个位数字分别为0,1,2,3,4,5,6,7,8,9的正整数的个数
import random
def fun():
random_list = [random.randint(10,99) for n in range(100)] #生成100个随机2位数列表,一行显示
statistics = {n:0 for n in range(10)} #生成一个字典,key:value形式,statistics={0: 0, 1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0, 7: 0, 8: 0, 9: 0}
for index, x in enumerate(random_list):
#enumerate函数,是python的内置函数,对于一个可迭代的(iterable)/可遍历的对象(如列表、字符串),enumerate将其组成一个索引序列,利用它可以同时获得索引和值
#enumerate多用于在for循环中得到计数
print(x, end=' ')
statistics[int(x % 10)] = statistics[int(x % 10)]+1
if ((index + 1) % 10 == 0):
print()
print(statistics)
if __name__ =='__main__':
fun()
运行结果如下:
标签:__,10,statistics,正整数,python,random,enumerate,100 来源: https://blog.csdn.net/weixin_45294964/article/details/120314774