摘要: #!/usr/bin/env python#_*_coding:utf-8_*_from random import shufflea = [1, 2, 3, 4]shuffle(a)b = sorted(a)temp = zip(a, b)print tempresult = dict(temp) 阅读全文
posted @ 2018-02-27 22:44 沧海小龙虾 阅读(143) 评论(0) 推荐(0) 编辑