阻止python代码仅执行某些任务

时间:2018-08-01 11:15:49

标签: python

有什么方法可以使python程序仅运行整个程序的某些部分,具体取决于用户输入的内容,我是python和整体编程的新手。

1 个答案:

答案 0 :(得分:0)

使用If-Else逻辑。

if input == something:  
   This part of Code  
elif input == something else:
   This part of code  
else:  
   Do nothing