Within this project there are several folders that have coding problems to solve in Python that will help you to familiarize yourself with the language and its most common functions. Each folder contains a file to open with jupyter notebook that will guide you step by step so that you reach the solution.
- snail-and-well
- duel
- bus
- robin-hood
- mission-impossible
- temperatures
- lyrics
- rock–paper–scissors
Clone this repository or work localy downloading the files. It is up to you.
Question: How old are you if you were born in 1990?
current = 2019
born = 1990
age = current - born
print ('Age =', age)
>>> Age = 29
Do as much as you can and good luck. In some cases the use of functions is recommended.