-
Loops in Python
For Loop Loops are so core for any programming language. Python is no exception here. Let’s check how to use it and what functionality loops provide. Simple scenario, how to print numbers from 0 to 10? As simple as could be, but let’s walk through details. First to start with is a range. It’s actually…
-
Python Data Types
Now it’s time to walk through basic data types that are provided by the language. We are going to focus on primitive built-in types and set sequence types aside as for now Boolean Boolean type is very simple, it can be either True or False It is commonly used in condition statements or as flags.…
-
Python Variables
Let’s dive into and check how to use variables in python. Example to start with: Assignment operator differs from one, that is used in algebra. It means that variable points to a memory block, that contains integer 10. If we use this variable in a print function, we will see 10 in an output: Let’s…
-
Python Intro
Programming is interesting and extremely popular nowadays. But it feels like most of modern books are either for people who are already familiar with programming or to far away from something real world. Easy case, my nephew is trying to learn programming but has some old fashioned courses in school with programming languages that are…
-
Hello world!
It looks like it’s a good time to start sharing some programming and computer science related thoughts and articles somewhere. This blog should be good enough to host this. Stay tuned!