Python os.openpty() 方法 Python os.open() 方法 Python os.pipe() 方法 Python os.openpty() 方法 # !/usr/bin/python import os # master for pty, slave for tty m,s = os.openpty() print m print s # showing terminal name s = os.ttyname(s) print m print s Python os.open() 方法 Python os.pipe() 方法