exit函数的作用:结束程序、并且可以指定结束码退出程序
print('hello') print('world') exit(100) # 程序执行到这行结束,并返回结束码为100 print('python') print('c++')