A little while ago I discovered the concept of List Comprehension. Once I understood it, I was quite eager to implement it in my first script for this series of posts about learning python. Motivation A nagging feeling tells me that the scripts is a bit – or maybe a lot – to long for its purpose. So, how hard can it be to use “List Comprehension” to mitigate the issue. Spoiler alert. It is not that hard. First code snippet First snippet to “fix”: year_list =list(range(1900,2100))y...