Today we are going to discuss how can we create a simple login application using tkinter in Python in which password values will be hidden from the user
Source Code
# importing tkinter from tkinter import * # initializing root root = Tk() # setting geometry root.geometry("400x300") # defining function to print username and password on call def showinfo(): print("User Name is", user_name.get()) print("Password is", password.get()) # defining function to clear entry widgets using .set() method def clear(): user_name.set("") password.set("") user_name = StringVar() # User name variable password = StringVar() # Password variable # creating an entry widget to take username user_name_Entry = Entry(root, textvariable=user_name).pack(pady=10) # creating an entry widget to take userpassword passEntry = Entry(root, textvariable=password, show='*').pack(pady=10) # creating a button to call "showinfo" function which will print # username and password in console Button(root, text='Show Info', command=showinfo).pack(pady=10) # creating a button to call "clear" function which will clear the entry # widgets value of username and userpassword Button(root, text='Clear Info', command=clear).pack(pady=10) # .mainloop() is used when our program is ready to run root.mainloop()
Output
On Running
On Entering Values
On Clicking the “Show Info” Button
Run Python Code:
Thanks for Reading
Keep Updated for more amazing content like this
Also read:
- Imagination to Reality, Unlocking the Future: Genesis Physics Engine for 4D SimulationGenesis has unveiled a groundbreaking physics engine capable of generating immersive 4D dynamical and physical worlds. It sets new benchmarks in areas such as: All this comes with optimized performance, making it an essential tool for researchers, developers, and hobbyists alike. Open-Source and Free for All The Genesis physics engine is completely open-source and free….
- Simple Code to compare Speed of Python, Java, and C++?Introduction There’s often a lot of debate about the speed of different programming languages, with many assuming that C++ is always the fastest and Python is the slowest. However, it’s not as straightforward as it seems. In this article, I’ll walk you through simple programs with the same logic written in Python, Java, and C++…
- Falling Stars Animation on Python.Hub October 2024Hello Python enthusiasts! Check out the cool animation below, featured on our Instagram page, python.hub. You can view the latest reel, posted on October 8, 2024, showcasing this animation. View this post on Instagram A post shared by Lalit Tomar • AI & Coding Wizard (@python.hub) Want the code for this reel? Simply follow this…
- Most Underrated Database Trick | Life-Saving SQL CommandHello folks! Today we are again back with a super important article on the Most underrated SQL & Database Trick to save your entire application. Maintaining the data integrity of your application is very important in this world of software development. However, even experienced engineers may encounter situations where mistakes happen in changing or updating…
- Python List MethodsHello friends, in this article, we will explore various Python List methods, indispensable tools in a programmer’s toolkit for manipulating lists efficiently. List methods in Python are built-in functions designed to perform specific tasks when applied to lists. To access a method in Python, we simply use the dot notation (.), linking the method to…