Skip to content

Commit 18967f8

Browse files
authored
Change python commands to python3 in README
Updated Python command examples to use 'python3' instead of 'python'.
1 parent ecf09ac commit 18967f8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
---
88

99
## questionnaire_import.py
10-
>python ./questionnaire_import.py
10+
>python3 ./questionnaire_import.py
1111
1212
Loads some quizzes from a sample list in the program and converts them into a specific [json format](./questionnaire.md#expected-json-schema) before to save them
1313
into the [json_questionnaires](./json_questionnaires) folder
@@ -17,7 +17,7 @@ More info : [questionnaire_import.md](./questionnaire_import.md)
1717
---
1818

1919
## questionnaire.py
20-
>python ./questionnaire.py <questionnaire.json>
20+
>python3 ./questionnaire.py <questionnaire.json>
2121
2222
Displays the quiz in argument and counts the number of good answers
2323

@@ -26,7 +26,7 @@ More info : [questionnaire.md](./questionnaire.md)
2626
---
2727

2828
## questionnaire_unit_tests.py
29-
>python ./questionnaire_unit_tests.py
29+
>python3 ./questionnaire_unit_tests.py
3030
3131
Uses the `unittest` automated framework but not only to test questionnaire.py
3232

0 commit comments

Comments
 (0)