python 统计使用技巧
Posted xiangsikai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 统计使用技巧相关的知识,希望对你有一定的参考价值。
python 统计使用技巧
# 1、不输入回车获取值
fd = sys.stdin.fileno() old_settings = termios.tcgetattr(fd) tty.setraw(sys.stdin.fileno()) ch = sys.stdin.read(1) # 值个数 termios.tcsetattr(fd,termios.TCSADRAIN,old_settings)
# 2、进度条
int = 0 percent = ("%s%%"%int) sys.stdout.write("\r[%-100s]%s"%("|" * int,percent)) term.write("\r[%-10s]%s"%("|" * int(intt/10),percent)) sys.stdout.flush()
# 3、uid 反查
getent passwd 48 user = os.popen("getent passwd %s | awk -F‘:‘ ‘print $1‘"%(self.user)) process_user = user.read()
以上是关于python 统计使用技巧的主要内容,如果未能解决你的问题,请参考以下文章