File size: 146 Bytes
7e357b2 | 1 2 3 4 5 | import json
from pathlib import Path
Path('/root/results').mkdir(parents=True, exist_ok=True)
Path('/root/results/answers.json').write_text('[]')
|
7e357b2 | 1 2 3 4 5 | import json
from pathlib import Path
Path('/root/results').mkdir(parents=True, exist_ok=True)
Path('/root/results/answers.json').write_text('[]')
|