개발/Python
파이썬 글자 색 지정
12345678910111213141516171819202122232425262728293031323334353637383940414243444546def color_text(text): text_color_list = { 'black': 30, 'red': 31, 'green': 32, 'yellow': 33, 'blue': 34, 'magenta': 35, 'cyan': 36, 'white': 37, 'bright_black': 90, 'bright_red': 91, 'bright_green': 92, 'bright_yellow': 93, 'bright_blue': 94, 'bright_magenta': 95, 'bright_cyan': 96, 'bright_white': 97 } back_color..
2020. 11. 5. 17:04