Python YAML: How to Load, Read, and Write YAML
YAML, a recursive acronym for “YAML Ain’t Markup Language”, is a human-readable data serialization language. It is often used for configuration files, but can also … read more
Start Learning Python Today
All pages in this category belong to our Python tutorial. It’s best to navigate the tutorial with the menu at the top of every page, instead of using the category pages.
YAML, a recursive acronym for “YAML Ain’t Markup Language”, is a human-readable data serialization language. It is often used for configuration files, but can also … read more
In this article, you will learn what Python comments are, how to add comments to your Python code, what the common pitfalls are, and how … read more
When you fire up VSCode for the first time, it might look overwhelming, but we’ll take it step by step so you get the most … read more
To understand what a Python iterator is, you need to know two terms: iterator and iterable: Iterators make for very elegant for-loops in Python, and … read more
In mathematics, there’s a concept called set-builder notation, also called set comprehension. Inspired by this principle, Python offers list comprehensions. In fact, the Python list … read more
Now that you have VSCode installed and know how to open it, we need to discuss one final topic before you start creating your Python … read more
Now you know why VSCode is awesome, and why it’s probably the best choice for you too. You probably can’t wait to install VSCode, right? … read more
You learned how to save a Python file using Windows Notepad and run it from the command-line. But like I said, using Notepad is the … read more
You now have a basic understanding of Python and the REPL, the latter can be very useful. However, as you noticed in the last example, … read more
This is a collection of personally picked Python learning resources, sorted by knowledge level. They are all great, so make sure to explore these! Most … read more