python给字符串添加下划线
2020-12-23 本文已影响0人
沫明
python给字符串添加下划线
underline = '\033[4m'
end = '\033[0m'
print(underline + 'Your text here' + end)
image.png
underline = '\033[4m'
end = '\033[0m'
print(underline + 'Your text here' + end)
image.png