#Blue Background <divclass="alert alert-info"> Example text highlighted in blue background div> #Green Background <divclass="alert alert-success">Example text highlighted in green background.div> #Yellow Background <divclass="alert alert-warning">Example text highlighted in yellow background.div> #Red Background <divclass="alert alert-danger">Example text highlighted in red background.div>
➤ Bullet point onebr> ➟ Bullet point twobr> ➣ Bullet point threebr> ➡ Bullet point fourbr> ➠ Bullet point fivebr> ➞ Bullet point sixbr> ➝ Bullet point sevenbr> ➜ Bullet point eightbr>
print('\033[31;3m This is red\033[0m') print('\033[32;3m This is green\033[0m') print('\033[33;3m This is yellow\033[0m') print('\033[34;3m This is blue\033[0m') print('\033[35;3m This is pink\033[0m') print('\033[36;3m This is skyblue\033[0m') print(
'\033[37;3m This is grey\033[0m')
渲染后的输出。
(ii)黑体字的文字
print('\033[1;31m This is bold red \033[0m') print('\033[1;32m This is bold green\033[0m') print('\033[1;33m This is bold yellow\033[0m') print('\033[1;34m This is bold blue\033[0m') print('\033[1;35m This is bold purple\033[0m') print('\033[1;36m This is bold teal\033[0m') print('\033[1;37m This is bold grey\033[0m')