我希望打印短划线"-"
,直到用户屏幕结束。
基本上我的程序会打印一行文本,然后打印一行破折号,然后是另一行文本。这样做是为了使用户可以容易地区分第一和第二行。
这样的事情:
First line of text
--------------------------------------------------------------------------------------
Second line of text
有没有办法让我使用标准的python 2.6库来做到这一点。我不能使用任何其他库,例如texttable
或更新版本的Python。
答案 0 :(得分:-2)
2.6?好的,那已经很老了。 这应该工作: (取自How to get Linux console window width in Python)
def getTerminalSize():
import os
env = os.environ
def ioctl_GWINSZ(fd):
try:
import fcntl, termios, struct, os
cr = struct.unpack('hh', fcntl.ioctl(fd, termios.TIOCGWINSZ,
'1234'))
except:
return
return cr
cr = ioctl_GWINSZ(0) or ioctl_GWINSZ(1) or ioctl_GWINSZ(2)
if not cr:
try:
fd = os.open(os.ctermid(), os.O_RDONLY)
cr = ioctl_GWINSZ(fd)
os.close(fd)
except:
pass
if not cr:
cr = (env.get('LINES', 25), env.get('COLUMNS', 80))
### Use get(key[, default]) instead of a try/catch
#try:
# cr = (env['LINES'], env['COLUMNS'])
#except:
# cr = (25, 80)
return int(cr[1]), int(cr[0])
(width, height) = getTerminalSize()
print "-" * width