摘要: https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyodbc 阅读全文
posted @ 2020-09-14 17:02 八月之疯 阅读(216) 评论(0) 推荐(0)
摘要: 一、列表转字典: 方法1: list_1 = ['abc', 'efg'] list_2 = [123, 456] new_dict = dict(zip(list_1, list_2)) 方法2: list_1 = ['a', 1] list_2 = ['b', 2] list_3 = [list 阅读全文
posted @ 2018-12-28 11:49 八月之疯 阅读(728) 评论(0) 推荐(0)