Posts by Saruque Ahamed Mollick

Author Biographical Info: Hi, I am a co-founder of CodeSpeedy Technology Private Limited.
I am in love with technology, music and green places.

How to set Tkinter Label text through variables

By Saruque Ahamed Mollick

In this tutorial, we will learn how to change or set Label text through variables in Tkinter. We can do this in two different ways, and I will show you both of those. But among tho.... Read More

How to get the list of all available fonts in Tkinter

By Saruque Ahamed Mollick

In this tutorial, we will learn how to get the list of all available fonts in Tkinter. We have to import font module like this: from tkinter import Tk, font font.families() will re.... Read More

Change Tkinter window size with variables – Dynamic

By Saruque Ahamed Mollick

In this tutorial, we will learn how easily we can change Tkinter window size with variables dynamically in Python. At first, I will show you how to do this using a custom function .... Read More

Set Tkinter Window Fullscreen at starting – Python

By Saruque Ahamed Mollick

In this tutorial, we will learn how to set the tkinter window at full screen size when starting the window or running the program. I will show you different methods to do the same..... Read More

from tkinter import * vs import tkinter in Python

By Saruque Ahamed Mollick

Let’s learn whats the difference is between using from tkinter import * and import tkinter as tk. Both of those will work fine for your program. If you use from tkinter impor.... Read More

How to start Tkinter window at a specific position of your display

By Saruque Ahamed Mollick

In this tutorial, we will learn how to start the Tkinter window at a specific position of your display. It’s much simpler than we think. Let’s first create a simple win.... Read More

How to install Tkinter in Python

By Saruque Ahamed Mollick

In Python, there are a lot of GUI libraries to use. But among those Tkinter is the only GUI library that comes along with the Python in-built. So in general you don’t have to.... Read More

Reason: Secure coding is not enabled for restorable state! Enable secure coding by implementing NSApplicationDelegate.applicationSupportsSecureRestorableState: and returning YES.

By Saruque Ahamed Mollick

First of all, this is not a tutorial. Today I just faced another issue with my MacOS while working in Python. I got this warning message: ” WARNING: Secure coding is not enab.... Read More

Related Posts