发布网友 发布时间:2022-04-06 04:21
我来回答
共1个回答
热心网友 时间:2022-04-06 05:50
def tup(x): #参数x = 20 则随机产生20个整数 s = [] j = 0 for i in range(x): j = randint(1, 100) if j % 2 == 0: s.append(j) return tuple(s) #返回包含有剩余偶数的元祖