Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
turab31
/
mnist-model
like
0
Keras
Model card
Files
Files and versions
xet
Community
Use this model
338964a
mnist-model
/
main.py
turab31
Upload folder using huggingface_hub
338964a
verified
about 2 months ago
raw
Copy download link
history
blame
203 Bytes
import
json
data ={
'age'
:
21
,
'name'
:
'tmna'
}
json_str = json.dumps(data)
print
(json_str)
print
(
type
(json_str))
parsed_str = json.loads(json_str)
print
(parsed_str)
print
(
type
(parsed_str))