add explanation to gen_set.py

This commit is contained in:
Tobias E 2025-01-17 19:24:16 +00:00
parent 24386d4d42
commit 10552763fb
1 changed files with 2 additions and 0 deletions

View File

@ -124,5 +124,7 @@ for page_no in range(1, no_of_pages + 1):
json_output = json.dumps(output, indent=4)
# print omitting first and last line containing [ ] of JSON array
#print(json_output[1:-1])
# print omitting first line containing [ of JSON array
print(json_output[1:])
# print(",")