#用列表生成式创建[1x1, 2x2, 3x3, ..., 10x10] print([x*x for x in range(1,11)]) #用列表生成式创建[2x2, 4x4,,6×6,..., 10x10] print([x*x for x in range(1,11) if x%2 == 0]) #用随机数字生成一个list,并把这个数字list转换成字符串listimport random l=[] ram=random.sample(range(1,51),50) for x in…