Python
PyDev of the Week: Mason Egger
This week we welcome Mason Egger (@masonegger) as our PyDev of the Week! Mason is an organizer of PyTexas and a developer advocate at Gretel. Mason also maintains a Python website where you can see Read more…
This week we welcome Mason Egger (@masonegger) as our PyDev of the Week! Mason is an organizer of PyTexas and a developer advocate at Gretel. Mason also maintains a Python website where you can see Read more…
In this video tutorial you will learn the following: Creating a function Calling a function Passing arguments Type hinting your arguments Passing keyword arguments Required and default arguments *args and **kwargs Positional-only arguments Scope Related Read more…
I am happy to announce that I am creating a Python 101 video course, which is based on Python 101: 2nd Edition. The course will eventually include videos that cover the chapters in the books. Read more…
The PyDev of the Week this week is Jyotika Singh (@JyotikaSingh_). Jyotika is the maintainer of pyAudioProcessing and a speaker at multiple conferences. You can check out what Jyotika is up to by going to Read more…
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 Read more…
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 Read more…
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 Read more…
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 Read more…
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, Read more…
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 Read more…