Getting Into The Zone Slowly. For the last 3 days, I have been giving one virtual LeetCode contest daily. Weekly 511, 510, 509. [One of these on day 2 because I remember I missed ...
It is to make it real. Not study DSA for 2 hours and SQL for 1 and then do Aptitude and other core subjects too. That sounds good to believe but doesn’t work out.
I sat for an hour. With 4 big tech OA questions from the previous year. Couldn’t completely solve any, but realized a few things. In most of them, my approach headed right [headed right didn’t ...
Every day starting today, I’ll write a few articles and append them here. I’ll be giving mocks every day. These will be timed mocks of previous year OA questions, CP questions, SQL questions, Aptitude ...
Today, I learned something that completely flipped my perspective on writing code. In my Data Structures and Algorithms (DSA) class, the first thing we discussed was this: “Sometimes, 100 lines of ...
Tomorrow, we’ll build a full Rich Text Editor with bold, italic, font styles, colors, links—you name it. But first, let’s master the basics.
But suddenly, it’s all looking like spaghetti. Let me introduce you to your new best friend: Frame. It helps you keep your layout neat and organized—just like folders on your desktop.
What is grid() in Tkinter? Okay, imagine your app is like a spreadsheet. You’ve got rows and columns. With grid(), you can tell Python: “Hey, I want this button in row 1, column 0.” And boom! It lands ...
So far we have seen labels, buttons, images, etc in Python’s built-in toolkit Tkinter. With any of the widgets, we were using a method called pack(). And if you are like me you would love to explore ...
Hello Pythonistas, welcome back. Today we will see how to use the Tkinter Entry widget (input widget) in Python. To do this along with the entry widget we will need a button and a label. Onclick the ...