1 Star 0 Fork 3

careline/python3basic

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
c19.py 477 Bytes
Copy Edit Raw Blame History
flymengfei authored 2018-01-03 21:09 +08:00 . ten
# -*- coding: utf-8 -*-
# json python
# object dict
# array list
# string str
# number int
# number float
# true True
# false False
# null None
# 类c语言
# 序列化
import json
student = [
{'name':'mf','age':18,'flag':False},
{'name':'mf','age':18}
]
# NOSQL MongoDB
json_str = json.dumps(student)
print(type(json_str))
print(json_str)
# JSON对象、JSON、JSON字符串
# ECMASCRIPT ActionScript JSON Typescript
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/careline/python3basic.git
git@gitee.com:careline/python3basic.git
careline
python3basic
python3basic
master

Search