In this tutorial I show you how to make a generator in Python. A generator is a function, that will serve you a sequence: it knows what "next" means in a given context. The sequence it serves can be finite or infinite. … [Read more...]
How Python is all about Trying Error Handling in Python
This is a Prezi-Tutorial that teaches you how to use the Try-Select-Clause in Python in order to write safe Python code. … [Read more...]
Ordered Dictionaries in Python
I just stumbled upon an ordered dict in Python and had to look it up. So here you can find how an ordered dict differs from a normal dict and why it is useful. … [Read more...]
How to format and print in Python 3.0
Are you like me? Always underestimating print and format and always struggeling with it, since you never really got into doing it the right way? In forcing myself to write this article about the print and format function in Python 3.0 I am hoping to counter that problem for myself, since printing and formating is something we do all the time, why not trying to get effective … [Read more...]
Function calls in Python
Of course I am using them all the time, so probably are you. But still it is good to revisit the essentials once in a while and to be sure about what we are doing. So if you want to revisit your knowledge on Python function calls, this article is for you. … [Read more...]