In this tutorial, you will learn what a REPL is and why it is useful. I also show you a couple of alternative REPL environments in this tutorial, such as IDLE and IPython. Related Articles An Intro to Python Editors Python 101 - An Intro to IDLE
Concurrency is a big topic in programming. The concept of concurrency is to run multiple pieces of code at once. Python has a couple of different solutions that are built-in to its standard library. You can use threads or processes. In this chapter, you will learn about using threads. When you run your own code, […]
This week we welcome Julien Palard (@sizeof) as our PyDev of the Week! Julien is a core developer of the Python programming language and a Python trainer. Julien is also the creator of HackInScience, a Python learning platform as well as an organizer for AFPy, the French Python user group. Julien did the French translation […]
In this tutorial, you will learn the basics of testing with Python and the built-in unittest module You can also read the article that this video is based on at Mouse vs Python here: Python 3 Testing: An Intro to unittest
This week we welcome Mirko Galimberti (@M1sl6) as our PyDev of the Week! Mirko is a core developer of Kivy, a cross-platform GUI framework for Python that targets iOS and Android, but works on Linux, Mac, and Windows too. Mirko also has a website, which is a great way to see what he is up […]
Python has lots of data visualization packages available to it. One of the most popular is Matplotlib. In this video tutorial, will be learning about the following topics: Creating a Simple Line Chart with PyPlot Creating a Bar Chart Creating a Pie Chart Adding Labels Adding Titles to Plots Creating a Legend Showing Multiple Figures […]