termtables:终端中的漂亮表 源码
该表已命名。 termtables是一个轻量级的Python 3软件包,用于在命令行上漂亮地打印表格。 与安装 pip install termtables 代码 import termtables as tt import numpy numpy . random . seed ( 0 ) data = numpy . random . rand ( 5 , 2 ) tt . print ( data ) # tt.to_string(data) returns the string 产生 您可以控制边框样式,填充,对齐和其他各种属性。 例如, import termtables a
用户评论