Python,改变一个字符串变量的字体大小 [英] Python , Changing a font size of a string variable

查看:2182
本文介绍了Python,改变一个字符串变量的字体大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个作为文本发送到电子邮件的变量,但是文本几乎都是标准大小,一切都一样。我想增加一些重点,如果可能的话,把它做大一点,大胆一些。这是我想编辑的代码。

  final_name =更改方式+ str(name)+***

我知道它并不多,但是我想知道如果可以使一个粗体字字体大小。

解决方案

字符串没有字体大小。字符串存储字符序列(unicode字符串)或字节被解释为字符(字节字符串)。

字体大小是表示的一个元素,是任何演示文稿和渲染系统。



当您提到一封电子邮件时,您可以使用HTML部分创建一个多部分电子邮件,并在HTML文档中对其进行相应的格式设置。

I have a variable that gets sent to a email as text but the text is all pretty much a standard size with everything the same. I would like to add some emphasis to it as well as make it bigger and make it bold if possible. Here is the code I would like to edit.

  final_name = "Changes by" + str(name)+" ***"

I know it isn't much but I would like to know if it is possible if I can make a variable string bold and with a slightly bigger font size.

解决方案

Strings don't have a font size. Strings store sequences of characters (unicode strings) or bytes to be interpreted as characters (byte strings).

Font size is an element of presentation, and is a function of whatever presentation and rendering system you are using.

As you mention an email, you could create a multipart email with an HTML part, and format it accordingly in that HTML document.

这篇关于Python,改变一个字符串变量的字体大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆