
python
a244376116
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python json数据写入文本中显示unicode码问题
python json数据写入到文本中显示unicode码问题 环境:python 2.7 这段时间这个问题一直困扰我,但也没有影响我使用就跳过了,今天正好要处理这个,就好好研究了下。显示如下: "res": { "InsBilTim": "2018-01-27", "InsBthDa1": "1991-01-19", "InsCltG.原创 2018-05-31 14:55:54 · 3490 阅读 · 0 评论 -
python list *运算初始化的的问题
环境:python 2.7 发现list初始化问题, 如果按以下形式初始化: test_list = [[]]*4 test_list[0].append([1]) test_list[1].append([2]) test_list[2].append([3]) test_list[3].append([4]) 得到结果: [[[1], [2], [3], [4]], [[1...原创 2018-07-24 17:04:35 · 428 阅读 · 0 评论