摘要: 1 # -*- coding: cp936 -*- 2 pre_n = '010010000100001100000000000000000000000001010001001001001010000101' 3 print '编码过程……………………' 4 length = len(pre_n) 5 pre_list = list(pre_n) 6 for ch in range (0,length): 7 pre_list[ch] = int (pre_list[ch]) 8 store_list = pre_list 9 print pre_list10 阅读全文
posted @ 2013-04-18 22:57 传说中的福利君 阅读(1485) 评论(0) 推荐(0) 编辑