随机生成一段python代码
时间: 2023-10-28 19:47:31 浏览: 63
随机生成代码
import random
list_a = [1, 2, 3, 4, 5]
list_b = ['a', 'b', 'c', 'd', 'e']
for i in range(len(list_a)):
print(str(list_a[i]) + ' is paired with ' + list_b[random.randint(0, 4)])
阅读全文
随机生成代码