翼度科技»论坛 编程开发 python 查看内容

python输出带有颜色字体的三种方法

7

主题

7

帖子

21

积分

新手上路

Rank: 1

积分
21
方法一

示例代码:
  1. # ANSI escape codes for some colors
  2. RED = '\033[91m'
  3. GREEN = '\033[92m'
  4. YELLOW = '\033[93m'
  5. BLUE = '\033[94m'
  6. MAGENTA = '\033[95m'
  7. CYAN = '\033[96m'
  8. WHITE = '\033[97m'
  9. RESET = '\033[0m'  # Resets the color to default

  10. print(f"{RED}This is red text{RESET}")
  11. print(f"{GREEN}This is green text{RESET}")
  12. print(f"{YELLOW}This is yellow text{RESET}")
  13. print(f"{BLUE}This is blue text{RESET}")
  14. print(f"{MAGENTA}This is magenta text{RESET}")
  15. print(f"{CYAN}This is cyan text{RESET}")
  16. print(f"{WHITE}This is white text{RESET}")
复制代码
效果:


方法二

需要termcolor的支持
  1. pip install colorama
复制代码
示例代码:
  1. from colorama import Fore, Back, Style, init

  2. # Initialize Colorama
  3. init(autoreset=True)

  4. print(Fore.RED + 'This is red text')
  5. print(Fore.GREEN + 'This is green text')
  6. print(Back.YELLOW + 'This has a yellow background')
  7. print(Style.DIM + 'This is dim text')
  8. print(Style.RESET_ALL)
  9. print('Back to normal text')
复制代码
效果:


方法三

需要termcolor:
  1. pip install termcolor
复制代码
  1. from termcolor import colored

  2. print(colored('Hello, World!', 'red'))
  3. print(colored('Green text', 'green'))
  4. print(colored('Blue text', 'blue', 'on_white'))  # Blue text on white background
复制代码
到此这篇关于python输出带有颜色文字的三种方法的文章就介绍到这了,更多相关python输出带颜色文字内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/python/3208746nh.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具