运行以下程序,输出结果为: lst1=[1,2,3,4,5] lst2=[3,4,9,12,7] for i in range(0,5): if lst2[i]%lst1[i]==0: print(i,end='') 此处''为空字符串

时间:2023-03-10 23:54:31

相似题目