python 原始类型向 json 类型的转化对照表:
| Python | JSON |
|---|---|
| dict | object |
| list, tuple | array |
| str, unicode | string |
| int, long, float | number |
| True | true |
| False | false |
| None | null |
本文介绍Python原始类型向JSON类型的转换对照表,包括dict到object、list/tuple到array、str/unicode到string等,帮助开发者理解不同数据类型之间的对应关系。
python 原始类型向 json 类型的转化对照表:
| Python | JSON |
|---|---|
| dict | object |
| list, tuple | array |
| str, unicode | string |
| int, long, float | number |
| True | true |
| False | false |
| None | null |
344
1187

被折叠的 条评论
为什么被折叠?
