6
6
Roundtripable? Yes
b'hello world'
![bytes](data:image/png;base64,aGVsbG8gd29ybGQ=)
Roundtripable? Yes
[1, 2, 3]
- 1
- 2
- 3
Roundtripable? Yes
[1, 2, 3, ['a', 'b', 'c']]
- 1
- 2
- 3
- a
- b
- c
Roundtripable? Yes
[b'hello world', b'hello universe']
- ![bytes](data:image/png;base64,aGVsbG8gd29ybGQ=)
- ![bytes](data:image/png;base64,aGVsbG8gdW5pdmVyc2U=)
Roundtripable? No
[{'animal': 'cat', 'name': 'Frisky'}, {'animal': 'dog', 'name': 'Fido'}]
| animal | name |
| ------ | ------ |
| cat | Frisky |
| dog | Fido |
Roundtripable? Yes
{'animal': 'cat', 'name': 'Frisky'}
# animal
cat
# name
Frisky
Roundtripable? Yes
{'animal': b'hello world', 'name': b'hello universe'}
# animal
![bytes](data:image/png;base64,aGVsbG8gd29ybGQ=)
# name
![bytes](data:image/png;base64,aGVsbG8gdW5pdmVyc2U=)
Roundtripable? Yes
{'ages': [24, 59, 45], 'countries': ['US', 'Canada', 'Iceland']}
- ages
- 24
- 59
- 45
- countries
- US
- Canada
- Iceland
Roundtripable? No
{'Best Cat': {'animal': 'cat', 'name': 'Frisky'}, 'Best Dog': {'animal': 'dog', 'name': 'Fido'}}
# Best Cat
| animal | name |
| ------ | ------ |
| cat | Frisky |
# Best Dog
| animal | name |
| ------ | ---- |
| dog | Fido |
Roundtripable? No
['abc', 123]
abc
---
123
[{'cat': 'Frisky'}, {'dog': 'Fido'}]
# cat
Frisky
---
# dog
Fido