-
Notifications
You must be signed in to change notification settings - Fork 0
Day template
mboivin edited this page Oct 25, 2020
·
6 revisions
# Bootcamp { name }
# Day01 - Theme
A brief description of the day goes here.
## Notions of the day
Notion 1, Notion 2, ...
## General rules
* The version of Python to use is 3.7, you can check the version of Python with the following command: `python -V`
* The norm: during this bootcamp you will follow the [PEP 8 standards](https://www.python.org/dev/peps/pep-0008/). You can install [pycodestyle](https://pypi.org/project/pycodestyle) which is a tool to check your Python code.
* The function eval is never allowed.
* The exercises are ordered from the easiest to the hardest.
* Your exercises are going to be evaluated by someone else, so make sure that your variable names and function names are appropriate and civil.
* Your manual is the internet.
* You can also ask any question in the dedicated channel in Slack: **[42ai slack](https://42-ai.slack.com)**.
* If you find any issue or mistakes in the subject please create an issue on our [dedicated repository on Github](https://github.com/42-AI/bootcamp_template/issues).
## Helper
Ensure that you have the right Python version.
```
$> which python
/goinfre/miniconda/bin/python
$> python -V
Python 3.7.*
$> which pip
/goinfre/miniconda/bin/pip
```
### Exercise 00 - Name of the exercise
### Exercise 01 - Name of the exercise
### Exercise 02 - Name of the exercise
### Exercise 03 - Name of the exercise
### Exercise 04 - Name of the exercise