脚本中的 Python 选项卡自动完成

如何在 Python (3) 代码中添加制表符补全?假设我有这个代码:


test = ("January", "February", "March"...)

print(test)

answer = input("Please select one from the list above: ")

我希望用户输入:Jan[TAB] 并让它自动完成到一月。有没有简单的方法可以做到这一点?允许使用模块和脚本。注意:列表会很长,包含非字典词。


交互式爱情
浏览 101回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python