编程语言
首页 > 编程语言> > python 统计使用技巧

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)


 

标签:old,技巧,python,stdin,termios,sys,fd,统计
来源: https://www.cnblogs.com/xiangsikai/p/11237139.html