Windows和Linux下Python输出彩色文字的方法教程


Posted in Python onMay 02, 2017

前言

最近在项目中需要输出彩色的文字来提醒用户,以前写过,但是只能在win上面运行。

今天搜了下看有没有在win和Linux上通用的输出彩色文字的模块,结果发现没有,,于是就自己弄了一个,分享下,以后用的时候翻翻博客,方便别人也方便自己。

win下输出彩色文字,网上有两种方法一种是用system执行命令来设置颜色,感觉还是不太好,用ctypes模块实现更好点。

linux下设置颜色,网上只找到了一种方法,下面不废话了,直接贴下代码:

示例代码

import platform
if 'Windows' in platform.system():
 import sys
 import ctypes
 __stdInputHandle = -10
 __stdOutputHandle = -11
 __stdErrorHandle = -12
 __foreGroundBLUE = 0x09
 __foreGroundGREEN = 0x0a
 __foreGroundRED = 0x0c
 __foreGroundYELLOW = 0x0e
 stdOutHandle=ctypes.windll.kernel32.GetStdHandle(__stdOutputHandle)
 def setCmdColor(color,handle=stdOutHandle):
 return ctypes.windll.kernel32.SetConsoleTextAttribute(handle, color)
 def resetCmdColor():
 setCmdColor(__foreGroundRED | __foreGroundGREEN | __foreGroundBLUE)
 def printBlue(msg):
 setCmdColor(__foreGroundBLUE)
 sys.stdout.write(msg + '\n')
 resetCmdColor()
 def printGreen(msg):
 setCmdColor(__foreGroundGREEN)
 sys.stdout.write(msg + '\n')
 resetCmdColor()
 def printRed(msg):
 setCmdColor(__foreGroundRED)
 sys.stdout.write(msg + '\n')
 resetCmdColor()
 def printYellow(msg):
 setCmdColor(__foreGroundYELLOW)
 sys.stdout.write(msg + '\n')
 resetCmdColor()
else:
 STYLE = {
 'fore':{
 'red': 31,
 'green': 32,
 'yellow': 33,
 'blue': 34,
 }
 }
 def UseStyle(msg, mode = '', fore = '', back = '40'):
 fore = '%s' % STYLE['fore'][fore] if STYLE['fore'].has_key(fore) else ''
 style = ';'.join([s for s in [mode, fore, back] if s])
 style = '\033[%sm' % style if style else ''
 end = '\033[%sm' % 0 if style else ''
 return '%s%s%s' % (style, msg, end)
 def printRed(msg):
 print UseStyle(msg,fore='red')
 def printGreen(msg):
 print UseStyle(msg,fore='green')
 def printYellow(msg):
 print UseStyle(msg,fore='yellow')
 def printBlue(msg):
 print UseStyle(msg,fore='blue')

效果图:

Windows:

Windows和Linux下Python输出彩色文字的方法教程

C:\luan\lu4n.com-sqli>python
Python 2.7 (r27:82525, Jul 4 2010, 09:01:59) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> from color import *
>>> printRed('Red')
Red
>>> printGreen('Green')
Green
>>> printYellow('Yellow')
Yellow
>>> printBlue('Blue')
Blue
>>> print 'http://lu4n.com/'
http://lu4n.com/
>>>

Linux:

Windows和Linux下Python输出彩色文字的方法教程

[root@Luan ~]# nano test_color.py
[root@Luan ~]# python
Python 2.7.5 (default, Jun 17 2014, 18:11:42) 
[GCC 4.8.2 20140120 (Red Hat 4.8.2-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from test_color import *
>>> printRed('Red')
Red
>>> printGreen('Green')
Green
>>>

用起来很容易,直接from color import *就可以用了,有4种常用颜色可以使用,分别写了4个函数:

提示信息 printBlue

成功信息 printGreen

失败信息 printRed

警告信息 printYellow

和bootstrap的几种颜色差不多,应该够用了。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对三水点靠木的支持。

Python 相关文章推荐
介绍Python中的一些高级编程技巧
Apr 02 Python
用Python的Tornado框架结合memcached页面改善博客性能
Apr 24 Python
Python ldap实现登录实例代码
Sep 30 Python
Python自定义函数定义,参数,调用代码解析
Dec 27 Python
基于windows下pip安装python模块时报错总结
Jun 12 Python
opencv python 基于KNN的手写体识别的实例
Aug 03 Python
python生成器与迭代器详解
Jan 01 Python
Python通过for循环理解迭代器和生成器实例详解
Feb 16 Python
浅谈Python2之汉字编码为unicode的问题(即类似\xc3\xa4)
Aug 12 Python
Python3+Requests+Excel完整接口自动化测试框架的实现
Oct 11 Python
Django中Q查询及Q()对象 F查询及F()对象用法
Jul 09 Python
无需压缩软件,用python帮你操作压缩包
Aug 17 Python
python中字符串类型json操作的注意事项
May 02 #Python
python实现逻辑回归的方法示例
May 02 #Python
pycharm中连接mysql数据库的步骤详解
May 02 #Python
Python多线程实现同步的四种方式
May 02 #Python
Python之Web框架Django项目搭建全过程
May 02 #Python
python3实现抓取网页资源的 N 种方法
May 02 #Python
Pycharm学习教程(2) 代码风格
May 02 #Python
You might like
php上传文件常见问题总结
2015/02/03 PHP
双冒号 ::在PHP中的使用情况
2015/11/05 PHP
PHP实现原生态图片上传封装类方法
2016/11/08 PHP
将CKfinder整合进CKEditor3.0的新方法
2010/01/10 Javascript
JavaScript中的this关键字介绍与使用实例
2013/06/21 Javascript
js Dialog 去掉右上角的X关闭功能
2014/04/23 Javascript
pace.js页面加载进度条插件
2015/09/29 Javascript
浅谈toLowerCase和toLocaleLowerCase的区别
2016/08/15 Javascript
Vue.js开发环境快速搭建教程
2017/03/17 Javascript
Angular.js组件之input mask对input输入进行格式化详解
2017/07/10 Javascript
微信小程序websocket实现即时聊天功能
2019/05/21 Javascript
微信小程序封装分享与分销功能过程解析
2019/08/13 Javascript
Vue强制组件重新渲染的方法讨论
2020/02/03 Javascript
JsonServer安装及启动过程图解
2020/02/28 Javascript
微信小程序实现组件顶端固定或底端固定效果(不随滚动而滚动)
2020/04/09 Javascript
[01:33:07]VGJ.T vs Newbee Supermajor 败者组 BO3 第一场 6.6
2018/06/07 DOTA
Python的净值数据接口调用示例分享
2016/03/15 Python
Python首次安装后运行报错(0xc000007b)的解决方法
2016/10/18 Python
Python中利用xpath解析HTML的方法
2018/05/14 Python
python+Django实现防止SQL注入的办法
2019/10/31 Python
通过Python实现一个简单的html页面
2020/05/16 Python
django 获取字段最大值,最新的记录操作
2020/08/09 Python
python定时截屏实现
2020/11/02 Python
Python Pandas数据分析工具用法实例
2020/11/05 Python
localStorage、sessionStorage使用总结
2017/11/17 HTML / CSS
迪斯尼商品官方网站:ShopDisney
2016/08/01 全球购物
戴森英国官网:Dyson英国
2019/05/07 全球购物
全球500多个机场的接送服务:Suntransfers
2019/06/03 全球购物
泰国国际航空公司官网:Thai Airways International
2019/12/04 全球购物
机关单位人员学雷锋心得体会
2014/03/10 职场文书
应届毕业生自荐信
2014/05/28 职场文书
地方白酒代理协议书
2014/10/25 职场文书
大学生个人学习总结
2015/02/15 职场文书
2015年维修工作总结
2015/04/25 职场文书
浅谈golang 中time.After释放的问题
2021/05/05 Golang
MySQL命令无法输入中文问题的解决方式
2021/08/30 MySQL