标签: python
有什么方法可以使python程序仅运行整个程序的某些部分,具体取决于用户输入的内容,我是python和整体编程的新手。
答案 0 :(得分:0)
使用If-Else逻辑。
if input == something: This part of Code elif input == something else: This part of code else: Do nothing