摘要: a = [1, 2, 3, 5, 6, 5, 7, 8] b = [1, 3, 4, 5, 6, 3, 8, 7] print('A => %s' % a) print('B => %s' % b) print('-' * 50) for index, item in enumerate(a): # 阅读全文
posted @ 2021-11-30 21:49 VipSoft 阅读(688) 评论(0) 推荐(0)