Appearance
自定义函数。
from xlwings import func @func def hello(name): return f"Hello {name}"
单元格输入公式,先显示 #BUSY! 再输出结果。
#BUSY!
=HELLO("李四")
Hello 李四