如何在 sublime 中使用 python 的变量 运行 函数

How to run function with variable of python in sublime

我在python写了一个程序如下:

def describe_pet(animal_type, pet_name):
    print("\n I have a" + animal_type + ".")
    print("My" + animal_type + "'s name is " + pet_name.title() + ".")

用ctrl+B在sublime里运行很流畅,但是不知道怎么输入变量“animal type”或者“pet_name” 崇高

Sublime text 目前不允许用户输入。请参阅此论坛 post. You can develop a custom build to add this functionality as seen here,或者您可以安装软件包,这可能使这成为可能。最后的解决方案是使用另一个 IDE,例如 VS Code。