Files
OS-Copilot/working_dir/code/test.py
2023-12-16 22:22:25 +08:00

12 lines
180 B
Python

import json
data = {
'task1' : {
'name': 'xxx',
'description': 'xxx',
'dependencies': ['task2', 'task3']
}
}
print(data['task1']['dependencies'])