0

这个论坛上的所有其他问题都告诉你如何使用 rust 在 python 中做一些事情,但我想做相反的事情。

我的 main.py 脚本中有一个函数可以读取用户的输入并将其存储。我想将该信息传递给一个 rust 文件,然后该文件将作为占位符打印此字符串。这是我的python代码:

#creating root window
root = Tk()

#function_definitions
def callback():
    text = textEditor.get(0.1,END)
    return(text)

#defining text editor
textEditor = Text(root, width=43, height=10)
textEditor.pack()

#button 1
button1 = Button(root, text="Display text", command = callback )
button1.pack(pady=12)

我想使用callback()in rust 的输出。我该怎么做呢?

4

0 回答 0