百木园-与人分享,
就是让自己快乐。

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\"字符,意思是回到当前行的开头,如此一来能够实现数字在同一个地方打印并变化。

 


来源:https://www.cnblogs.com/yinhuachen/p/15956459.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » python小技巧总结

相关推荐

  • 暂无文章