Python3 tkinter基础 Entry show textvariable 密码输入框
2021-05-23 10:28
标签:沟通 初心 ubuntu read alt pychar 理解 log org ? ? ? ? ? ? Python具有开源、跨平台、解释型和交互式等特性,值得学习。 Python3 tkinter基础 Entry show textvariable 密码输入框 标签:沟通 初心 ubuntu read alt pychar 理解 log org 原文地址:https://www.cnblogs.com/xingchuxin/p/9735577.html
code
"""
@Author : 行初心
@Date : 18-10-1
@Blog : www.cnblogs.com/xingchuxin
@GitHub : github.com/GratefulHeartCoder
"""
from tkinter import *
def main():
root = Tk()
password = StringVar()
# 密码输入,输入字符显示 * 符号
e = Entry(root, textvariable=password, show=‘*‘)
e.pack()
mainloop()
if __name__ == ‘__main__‘:
main()
result
reference
resource
Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来做一件事。
GUI可以选择PyQt5、PySide2、wxPython、PyGObject、wxWidgets等进行创作。
代码的书写要遵守规范,这样有助于沟通和理解。
每种语言都有独特的思想,初学者需要转变思维、踏实践行、坚持积累。
文章标题:Python3 tkinter基础 Entry show textvariable 密码输入框
文章链接:http://soscw.com/index.php/essay/88186.html