In this tutorial, you will learn about Python's tuple data type: If you prefer to read rather than watch, then you should check out Python 101 – Learning About Tuples Get the Jupyter Notebook on Github
There are times when you are writing an application and you need to run another application. For example, you may need to open Microsoft Notepad on Windows for some reason. Or if you are on Linux, you might want to run grep. Python has support for launching external applications via the subprocess module. The subprocess […]
This week we welcome Florian Dahlitz (@DahlitzF) as our PyDev of the Week! Florian is a contributor to the CPython programming language and the PyTest framework. He is also a contributor to Real Python. You can check out Florian's personal blog or get his newsletter to keep up-to-date with him. Let's spend some time getting […]
In this video, you will learn the basics of using the Jupyter Notebook. How to change cells, edit cells, run cells, and much more!
In this tutorial, you will learn how to improve the image viewer application that you created in the previous video tutorial to make it load up a folder of images. Then you will add some buttons so that the user can go forwards and backwards through the images or play a slideshow of the images. […]
Application developers are always working with files. You create them whenever you write a new script or application. You write reports in Microsoft Word, you save emails or download books or music. Files are everywhere. Your web browser downloads lots of little files to make your browsing experience faster. When you write programs, you have […]