在Python中,要结束程序的执行,可以使用sys.exit()
函数。首先,需要导入sys
模块,然后调用sys.exit()
函数并传递一个可选的状态码参数。通常情况下,状态码为0表示程序正常退出,非零值表示程序异常退出。
示例代码:
import sys print("This is a sample Python program.") sys.exit(0) print("This line will not be executed.")
在这个示例中,程序会输出"This is a sample Python program.",然后调用sys.exit(0)
结束程序执行,因此"This line will not be executed."不会被执行。