时间:2021-05-22
如下所示:
# -*- coding: utf-8 -*-# @Author: xiaodong# @Date: just hide# @Last Modified by: xiaodong# @Last Modified time: just hide# try:# from colorama import Fore, Style# except ImportError:# class Temp:# def __getattr__(self, x):# return ''# Fore = Style = Temp()STYLE = { 'fore': { 'black': 30, 'red': 31, 'green': 32, 'yellow': 33, 'blue': 34, 'purple': 35, 'cyan': 36, 'white': 37, }, 'back': { 'black': 40, 'red': 41, 'green': 42, 'yellow': 43, 'blue': 44, 'purple': 45, 'cyan': 46, 'white': 47, }, 'mode': { 'bold': 1, 'underline': 4, 'blink': 5, 'invert': 7, }, 'default': { 'end': 0, }}def use_style(string, mode='', fore='', back=''): mode = '%s' % STYLE['mode'][mode] if mode in STYLE['mode'] else '' fore = '%s' % STYLE['fore'][fore] if fore in STYLE['fore'] else '' back = '%s' % STYLE['back'][back] if back in STYLE['back'] else '' style = ';'.join([s for s in [mode, fore, back] if s]) style = '\033[%sm' % style if style else '' end = '\033[%sm' % STYLE['default']['end'] if style else '' return '%s%s%s' % (style, string, end)def gentle_show(seq, *, column=4, fontdict=None): if fontdict is None: line_color = 'red' font_color = 'blue' elif isinstance(fontdict, dict): line_color = fontdict.get('line_color', 'red') font_color = fontdict.get('font_color', 'green') seq = list(map(str, seq)) max_len = len(max(seq, key=len)) for index, ele in enumerate(seq): if index % column == 0: print(use_style('-' * max_len * column + '-' * (column - 1), fore=line_color)) print(use_style(ele.center(max_len, ' '), mode='bold', fore=font_color), end='|') else: if (index - column + 1) % column == 0: print(use_style(ele.center(max_len, ' '), mode='bold', fore=font_color)) else: print(use_style(ele.center(max_len, ' '), mode='bold', fore=font_color), end='|') print('\n')if __name__ == "__main__": gentle_show(dir([]), column=6, fontdict={'line_color': 'red', 'font_color': 'green'}) gentle_show(range(10))以上这篇python 美化输出信息的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Python3输入和输出输出格式美化Python两种输出值的方式:表达式语句和print()函数。第三种方式是使用文件对象的write()方法,标准输出文件可以
本文实例讲述了python在windows命令行下输出彩色文字的方法。分享给大家供大家参考。具体分析如下:默认情况下python在控制台输出的文字信息都是黑白的
下面利用一个python的实例程序,来学习python。这个程序的目的就是分析出所有MP3文件的Tag信息并输出。importos#导入os模块,提供文件路径,
本文实例讲述了Python输出PowerPoint(ppt)文件中全部文字信息的方法。分享给大家供大家参考。具体分析如下:下面的代码依赖于windowscom,
本文实例讲述了Python使用logging模块实现打印log到指定文件的方法。分享给大家供大家参考,具体如下:可能我们经常会使用print来输出信息到窗口,但