我想知道我是否可以执行脚本的某些行而不是像R中那样执行所有代码。
例:
print ("hello world")
print ("How old are you?")
我只想打印第一行,如何?
最佳答案
您可以使用以下功能:
def actionsToDo():
print("You can see me")
def actionsToSkip():
print("You can't see me")
actionsToDo()
您也可以调用
exit()
,这将终止脚本的执行,但这不是一个好习惯。print("You can see me")
exit()
print("You can't see me")
希望对您有所帮助。
关于python - 我可以像在R中一样在python中运行行吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60021415/