Case study

We will use the data from the world bank. It contains data on world economies for over half a century. The indicators are : Population Electricity consumption CO2 emissions Literacy rates Unemployment Mortality rates Dictionaries for data science+ Writing a function to help you Using a list comprehension Turning this Read more…

List comprehensions

Populate a list with a for loop : We can do that in only one line with a list comprehension ! Now a list comprehension with range() : List comprehensions : Collapse for loops for building lists into a single line Components : iterable iterator variable (represent members of iterable) Read more…

Loops

Now if we want to repeat things we can use a wide variety of tools. Like : While loops Repeating action until condition is met Do not forget to increment the condition to avoid being stuck in an infinite loop. If your are just ctrl+c to stop the calculation For Read more…