You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These exercises were built in collaboration, we need you! If you find any bugs or misspellings, please contribute and report them.
30
26
31
27
<!-- hide -->
32
28
33
29
## One click installation (recommended):
34
30
35
31
You can open these exercises in just a few seconds by clicking: [Open in Codespaces](https://codespaces.new/?repo=4GeeksAcademy/python-functions-programming-exercises) (recommended) or [Open in Gitpod](https://gitpod.io#https://github.com/4GeeksAcademy/python-functions-programming-exercises).
36
32
37
-
> Once you have VSCode open the LearnPack exercises should start automatically. If exercises don't run automatically you can try typing on your terminal: `$ learnpack start`
33
+
> Once you have VSCode open, the LearnPack exercises should start automatically. If exercises don't run automatically you can try typing on your terminal: `$ learnpack start`
38
34
39
35
## Local Installation
40
36
41
-
1) Make sure you have [learnpack](https://learnpack.co) installed, `node.js` version 14+ and python version 3+. This is the command to install learnpack:
37
+
1) Make sure you have [LearnPack](https://learnpack.co) installed, node.js version 14+, and Python version 3+. This is the command to install LearnPack:
42
38
43
-
```
39
+
```bash
44
40
$ npm i learnpack -g && learnpack plugins:install learnpack-python
45
41
```
46
42
47
-
2) Clone or download this repository. Once you finish downloading, you will find a new folder with a subdirectory "exercises" that contains all the exercises within.
43
+
2) Clone or download this repository. Once you finish downloading, you will find a new folder with a subdirectory called "exercises" that contains all the exercises within.
3) Start the tutorial/exercises by running the following command from the root of the project:
54
50
55
-
```sh
51
+
```bash
56
52
$ cd python-functions-programming-exercises
57
53
$ pip install pytest==4.4.2 mock pytest-testdox
58
54
$ learnpack start
59
55
```
60
56
61
-
62
57
<!-- endhide -->
58
+
63
59
## How are the exercises organized?
64
60
65
-
Each exercise is a small react application containing the following files:
61
+
Each exercise is a small React application containing the following files:
66
62
67
-
1.**app.py:** represents the entry python file that will be executed by the computer.
63
+
1.**app.py:** represents the entry Python file that will be executed by the computer.
68
64
2.**README.md:** contains exercise instructions.
69
65
3.**test.py:** you don't have to open this file, it contains the testing script for the exercise.
70
66
71
-
> Note: The exercises have automatic grading but its very rigid and string, my recomendation is to ignore the tests and use them only as a recomendation or you can get frustrated.
67
+
> Note: The exercises have automatic grading, but it's very rigid and strict, my recommendation is to not take the tests too serious and use them only as a suggestion, or you may get frustrated.
72
68
73
69
## Contributors
74
70
75
71
Thanks to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
0 commit comments