Difficult-Rocket/try/config checks/dict_check_check.py

13 lines
123 B
Python
Raw Normal View History

2021-01-26 08:06:36 +08:00
import pprint
2021-02-06 16:41:54 +08:00
a = {'a': 'b', 're': '2'}
2021-01-26 08:06:36 +08:00
for x in a:
2021-02-06 16:41:54 +08:00
pprint.pprint(x)
b = [1, 'a', 5]
pprint.pprint(b)
print(b[3])