求教怎么在编辑代码时限定参数取值
例如,有一个函数:def set_option(key: str, value: Union(str, bool, float)):
pass
key要求只能是('speed','weight','color','becover')中的一个
例如:set_option('speed',120)
set_option('color','green')
set_option('becover',True)
在编辑代码,调用set_option函数时,我希望PyCharm能:
1)能验证set_option的第一个参数是不是('speed','weight','color','becover')中的一个
2)若能在输入set_option(key=后,弹出一个列表('speed','weight','color','becover')让我选,就更好了。
请问,PyCharm能做到么?怎么做?