python给字符串添加下划线

python给字符串添加下划线

underline = '\033[4m'
end = '\033[0m'
print(underline + 'Your text here' + end)