In my former blogs, I already explained a couple of thinks that you can get as output while using print(). I am going to repeat a couple of them and explain some new things that print() can do: If you just use print(abcd), Python is going to print the value of abcd. So if you …
Category Archives: Geen categorie
The basic types of Python
In this blog, we are going to explore some more about the use of the basic types in Python. Python has a couple of built-in types that you can use while typing your code. I am going to explain a couple of them ordered from the most simple to more difficult. First integers, integers are …
The Zen of python
The next assignment, how I understood it, is to figure out what the Zen of Python is, how you have to open it and my interpretation of the rules. So, to give an answer on the first question I just asked Google (cause everything, not only help with Python, that you want to figure out, …
Making comments in Python
Because of the fact that I don’t know how to make comments, I begun searching on the internet. I reached this site with a lot of information about commenting in Python. So, let’s follow the site and try to do that in Python. Btw, to make a black enter in python you can just type …
Getting to know Thonny
Hey guys!In my first blog I said that we are using another program then Python for the programming. In this class today I found out that it was Thonny, so now I am using that and it’s looks easier than the Python. I started to use it with thinking what I wanted to achieve. So, …