我想用Tkinter做一个简单的计算器。我有几行代码,想要检查它是否有效。但是,我重申了这样的错误:"Calc(T.Tk()).run() --此构造函数不带参数“。这是我的代码:
# -*- coding: utf-8 -*-
import Tkinter as T
from Tkinter import W, E
class Calc():
def _init_(self,main):
self.main = main
self.main.title('Calculator')
self.main.conf
我有一个计算器程序与tkinter创建的图形用户界面。我想将其打包到单个GUI中,但使用
py -3.4 -m py2exe.build_exe calc_gui.pyw -p tkinter -b 0
在命令提示符下,我得到错误消息:
The following modules require a minimum of bundle_files option,
otherwise they will not work (currently bundle_files is set to 0):
tkinter: 2
Please change the bundle_fil
我正在构建一个计算器,我在按下按钮并在屏幕上显示值的部分。为此,我创建了两个不同的.py文件(我想使用模块)。按照您的要求,我将用最简单的代码更新帖子,以重现问题。这是计算器的布局:
from tkinter import *
from screenvalue import value
root=Tk()
frame=Frame(root) #frame for the buttons and other options
frame.config(background="#40798C")
frame.pack()
#------------------------ SCR
我已经将数据转换为整数并添加括号,但这不是工作
我第一次试着写Tkinter。请原谅我
这是一个计算一个变量的二次方程的计算器,它使用了Tkinter编写的图形界面。
环境:PyCharmPython3.10 MacOS 12.3.1
import time
import math
a = ""
b = ""
c = ""
def clicked():
global a
a = int(entry_a.get())
global b
a = int(entry_b.get())
global c