Computer >> Máy Tính >  >> Lập trình >> Python

In màu của thiết bị đầu cuối bằng Python

Trong thiết bị đầu cuối, nếu bạn muốn làm cho một số văn bản xuất hiện ở chế độ màu, có nhiều cách trong lập trình python để đạt được điều đó.

Sử dụng mô-đun python

1. mô-đun màu sắc:Đây là định dạng Màu ANSII cho đầu ra trong thiết bị đầu cuối.

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)

Kết quả

In màu của thiết bị đầu cuối bằng Python