
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:
- Aya Expanse supports multiple languages for diverse global applications
Snapshot Aya Expanse is a cutting-edge multilingual model that has achieved exceptional performance across 23 different languages, setting a new benchmark for language understanding and generation capabilities. Why this matters The implications of Aya Expanse are significant, as it enables developers to create more inclusive and effective applications that can cater to diverse user bases… - Alibaba releases Page Agent on GitHub for public access
Snapshot GitHub’s trending page has highlighted Page Agent, an open-source project by Alibaba. This innovative tool allows for efficient and simplified web page analysis, providing developers with valuable insights into page performance and structure. Why this matters Page Agent’s ability to analyze web pages and provide actionable data has significant implications for developers. By leveraging… - Google Sheets Gemini reaches new levels of performance and accuracy
Gemini in Google Sheets has achieved state-of-the-art performance, with a 70.48% success rate in autonomously manipulating complex, real-world spreadsheets on the full SpreadsheetBench dataset. This milestone marks a significant advancement in AI-powered spreadsheet capabilities, positioning Gemini as a leader in the field. Situation The recent announcement of new beta features for Gemini in Sheets has… - Artificial intelligence boosts cardiac care in rural Australian communities
Google is partnering with leading Australian health organizations to bring new AI tools to regional communities, with a $1 million investment from Google Australia’s Digital Future Initiative. This project aims to identify heart health risks early, making proactive care possible for more people, particularly in rural Australia where individuals are 60% more likely to die… - NVIDIA GTC 2026 Offers Insights into Future Artificial Intelligence Developments
NVIDIA’s GTC 2026 conference is now underway, bringing together 30,000 attendees from 190 countries to explore the latest advancements in AI, with a focus on engineering implications. This year’s event introduces OpenClaw, the fastest-growing open source project in history, allowing attendees to build and deploy their own proactive, always-on AI assistants. What’s New with OpenClaw…






