随笔分类 - python学习
摘要:test.pyimport mapnikstylesheet = 'world_style.xml'image = 'world_style.png'm = mapnik.Map(1200, 800)mapnik.load_map(m, stylesheet...
阅读全文
摘要:今天在使用python中的json转换碰到一个问题:接收一个post的json字符串:s={"username":"admin","password":"password","tenantid":""}使用python自带的json库12345678910import...
阅读全文
摘要:在python中使用JSON,导入出现错误了,类型错误等。#!/usr/bin/pythonimport jsonf = open('data.json', encoding='utf-8')s = json.load(f)print(s)print(s.keys()...
阅读全文