Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

พิมพ์สีของเทอร์มินัลใน Python


ในเทอร์มินัล หากคุณต้องการให้ข้อความปรากฏขึ้นในโหมดสี มีหลายวิธีในการเขียนโปรแกรมหลามเพื่อให้บรรลุเป้าหมาย

การใช้โมดูลหลาม

โมดูล 1.termcolor:เป็นการจัดรูปแบบสี ANSII สำหรับเอาต์พุตในเทอร์มินัล

import sys
from termcolor import colored, cprint
text1 = colored('Hello, Tutorialspoint!', 'blue', attrs=['reverse', 'blink'])
print(text1)
cprint('Hello, Python!', 'blue', 'on_white')
print_red_on_blue = lambda x: cprint(x, 'red', 'on_blue')
print_red_on_blue('Hello, from Data Science!')
print_red_on_blue('Hello, Python!')
for i in range(10):
   cprint(i, 'green', end=' ')
cprint("Attention!", 'blue', attrs=['bold'], file=sys.stderr)

ผลลัพธ์

พิมพ์สีของเทอร์มินัลใน Python