我正在制作我自己的名为 zoro 的自定义 python 模块,并且我想让人们制作一个变量,并且该变量等于我模块中的一个函数,但我该怎么做呢?
我已经尝试查看其他模块(如turtle)的代码,turtle 使用了 self 参数,所以我尝试使用它,但它说TypeError: win() missing 1 required positional argument: 'self'.
我的程序代码来测试模块:
import zoro
test = zoro.win("test","black",500,500)
test.zoro.winTitle("test2")
我的模块代码:
from tkinter import *
def win(title,bg,w,h):
root = Tk()
root.title(title)
root.config(bg=bg)
root.geometry(str(w) + "x" + str(h))
return root
def winTitle(title):
root.title(title)
我想做这样的事情:
test = zoro.win("test","black",500,500)
test.zoro.winTitle("test2")
收到一只叮咚
万千封印
相关分类