-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathexercises.py
37 lines (31 loc) · 1.33 KB
/
exercises.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This Python file uses the following encoding: utf-8
# Python exercises
# This series of exercises have been taken from `46 Python Exercises`
#
# 46 Python exercises is a collection of simple python exercises constructed
# (but in many cases only found and collected) by Torbjörn Lager ([email protected]).
#
# Most of them involve characters, words, and phrases, rather than numbers, and are therefore suitable
# for students interested in language rather than math.
#
# The original collection can be found at the following URL
# http://www.ling.gu.se/~lager/python_exercises.html
# The collection is divided in 4 sections:
#
# 1. Very Simple Exercises
# 2. Higher Order Functions And List Comprehensions
# 3. Simple exercises including I/O
# 4. Somehow harder exercises
# The idea of this project is to collect solutions for these exercises which
# may serve as reference for people getting started with python, as well as developers
# that want to take a look at different design solutions.
# MIT Licenced.
# (c) 2013, Pablo Vallejo - https://github.com/PabloVallejo
#
# The repository for this project is available at.
# https://github.com/PabloVallejo/python-exericeses
# Import all four sections of the exercises
from sections.module_1 import *
from sections.module_2 import *
from sections.module_3 import *
from sections.module_4 import *