if len(sys.argv) != 2: print("-"*30) print("tips:") print("python xxxx.py 192.168.100.101") print("-"*30) #若if条件不满足,则跳出判断语句,不执行else语句 exit()
在程序中如果遇到if语句中有exit(),程序一旦从if语句中进入并执行到exit(),那么立即会跳出整个程序,不再执行。
原文地址:https://www.cnblogs.com/Beyond-chen/p/9146214.html
时间: 2024-10-12 16:28:59