Author name: Abhishek Joshi

Get list of all available fonts in Tkinter

In this tutorial, we explore Tkinter, the standard GUI library for Python, which provides a variety of properties to customize widgets, making it a powerful tool for creating desktop applications. Among various properties of Tkinter, the font property stands out as particularly valuable, allowing developers to tailor the appearance of text in their applications. Despite …

Get list of all available fonts in Tkinter Read More »

How to get label text with variables in Tkinter

In this tutorial, we are going to explore the Tkinter, the standard GUI library for Python, provides a variety of properties to customize widgets, making it a powerful tool for creating desktop applications. One common requirement when working with labels is to dynamically update the text displayed on them based on variables. This tutorial will …

How to get label text with variables in Tkinter Read More »

Extract all the capital letters from a text file using Python

In this tutorial, we are working with text files, where you might encounter scenarios where you must extract specific characters, such as all the capital letters. This can be particularly useful for tasks like data analysis, text processing, or even creating fun puzzles! Text File as Text.txt: Rajni is the best-friend of Kusha and Manali …

Extract all the capital letters from a text file using Python Read More »

Extract all the integers from a text file using Python

In this tutorial, we will delve into Python’s robust standard library and powerful data processing capabilities, providing various methods to extract integers from a text file. We’ll explore different techniques, leveraging Python’s built-in functionalities and some handy libraries. By the end of this guide, you’ll clearly understand how to extract integers from any text file, …

Extract all the integers from a text file using Python Read More »

Join two images in a single image file in Python

In this tutorial, we will explore how to join two images using two prominent Python libraries which are Pillow and OpenCV (cv2). Pillow is a versatile, free, and open-source library designed for creating and manipulating digital images effortlessly. On the other hand, OpenCV (cv2) offers robust capabilities for image and video processing, making it an …

Join two images in a single image file in Python Read More »

Scroll to Top