https://github.com/roalyr/python-test-card-generator
This script generates random test cards from blocks of questions and saves them as a text file.
https://github.com/roalyr/python-test-card-generator
Last synced: 2 months ago
JSON representation
This script generates random test cards from blocks of questions and saves them as a text file.
- Host: GitHub
- URL: https://github.com/roalyr/python-test-card-generator
- Owner: roalyr
- License: gpl-3.0
- Created: 2022-01-17T15:42:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-17T15:59:42.000Z (over 3 years ago)
- Last Synced: 2025-02-13T00:28:10.637Z (4 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-test-card-generator
This script generates random test cards from blocks of questions and saves them as a text file.### How to
Just download and run it with Python3 after inserting questions into the question blocks:
`python3 ./Test_card_generator.py`A small lifehack: use spreadsheets to organize questions, add `"` and `,` symbols,
then copy question blocks to plain text editor and replace tabs with spaces and copy the result to the script.### Result
```
Test card № 1
1. Question 2
2. Question 1
3. Question 4
Test card № 2
1. Question 4
2. Question 5
3. Question 3
Test card № 3
1. Question 5
2. Question 6
3. Question 7
Test card № 4
1. Question 1
2. Question 2
3. Question 10
...
```