# AI-Saturdays Nairobi - Beginner
This exerise is designed to assess your programming capabilities.
Submissions received before **Thursday August 2nd 2018** will be considered for the AI-Saturdays 2018 Beginner Track.
### Task 1
Everytime you run the snippet of code below, a new random list, **ourList** of 10 integers between 1 and 10 is generated. Extend the snippet to create a valriable **belowFive** with only the elemets of **ourList** that are below 5.
```sh
import random
ourList = list()
count = 0
while (count Pull all changes, make sure your repository is up to date
```sh
$ cd aiSaturdays_Beginner2018
$ git pull origin master
```
>Create a new branch as follows-> git checkout -b [your_email], e.g.
```sh
$ git checkout -b youremail@gmail.com master
```
>See all branches created
```sh
$ git branch
* youremail@gmail.com
master
```
>Push the new branch to github
```sh
$ git push origin -u youremail@gmail.com
```
3.**Remember to only make changes to the fork!**
Edit the **task1** and **task2** .py files in the repository folder and solve the set out exercises. Each file should be concluded with a **print()** statement that prints out the desired result.
eg.
```sh
print(belowFive)
```
```sh
print(reversePhrase)
```
4.Commit the changes to your fork.
5.Make a pull request to the **aiSaturdays_Beginner2018** Repo.