英文: How to use value from one python script to another 问题 我有两个Python脚本。 Script1.py 包括: ``` python im...
CTRL键按下事件通过触摸板滚动触发。
英文: CTRL KeyPress event is fired trough scrolling with TouchPad 问题 我试图追踪控制键在按下和释放时的情况。 在一开始一切似乎都很正常,...
使用Python的tkinter创建的模拟时钟,但一运行它,就在1秒后停止。
英文: analog clock using tkinter on python but as soon as i run it it stops after 1 second 问题 # import...
'NoneType'对象没有属性'get' | Python GUI
英文: 'NoneType' object has no attribute 'get' | Python GUI 问题 抱歉,我不能提供对代码错误的实时调试。这个错误...
如何在几秒钟内更新一个tkinter标签
英文: How to update a tkinter label every few seconds 问题 import tkinter as tk import datetime import p...
限制 Entry 中的字符数。
英文: How to limit the character in Entry 问题 我需要将输入限制为最多5位数字。 ```python def validate(S): try: float(S)...
检查 tkinter 窗口的大小使用 “if” 语句。
英文: Check the size of tkinter window using "if" statement 问题 if root.geometry == "457...
Starting n threads with same function at different times.
英文: Starting n threads with same function at diffrent times 问题 I'm currently working with Tkinter to...
有没有办法在 Python 中的另一个函数内终止一个函数
英文: is there a way to terminate a function inside another function in python 问题 以下是您要翻译的代码部分: count ...
如何在一个字符串中使用多种字体,python,tkinter
英文: How to make multiple Fonts in one string, python, tkinter 问题 在Tkinter中,我想在一个Label中使用不同的字体。实际情况是这...
29