python小技巧总结
作者:互联网
1. 下面这个 Python 程序向您展示了捕获信号SIGINT
并忽略它的基本操作,它并不会让程序停止。为了停止这个程序,我们需要使用SIGQUIT
信号,通过输入Ctrl-\
可以发送该信号。
#!/usr/bin/env python
import signal, time
def handler(signum, time):
print("\nI got a SIGINT, but I am not stopping")
signal.signal(signal.SIGINT, handler)
i = 0
while True:
time.sleep(.1)
print("\r{}".format(i), end="")
i += 1
看看倒数第二行print里的"\r"字符,意思是回到当前行的开头,如此一来能够实现数字在同一个地方打印并变化。
标签:总结,技巧,python,signal,SIGINT,handler,time,print 来源: https://www.cnblogs.com/yinhuachen/p/15956459.html