在 Python 中打印字符串中的布尔值
使用格式化的字符串文字来打印字符串中的布尔值,例如 print(f'is subscribed: {my_bool}')
。 格式化的字符串字面量让我们通过在字符串前面加上 f 来将变量包含在字符串中。
my_bool = True
result = f'is subscribed: {my_bool}'
print(result) # 👉️ is subscribed: True
my_bool_2 = False
result = f'{my_bool} is the opposite of {my_bool_2}'
print(result) # 👉️ True is the opposite of False
我们使用格式化的字符串文字来打印在字符串中存储布尔值的变量。
格式化字符串文字 (f-strings)
让我们通过在字符串前面加上 f 来在字符串中包含表达式。
my_str = 'is subscribed:'
my_bool = True
result = f'{my_str} {my_bool}'
print(result) # 👉️ is subscribed: True
我们可以根据需要使用这种方法在字符串中插入尽可能多的用于存储布尔值的变量。
确保将表达式包裹在花括号 - {expression}
中。
请注意,print()
函数返回 None,因此不要尝试将调用 print
的结果存储在变量中。
my_bool = True
# ⛔️ BAD (print always returns None)
result = print(f'is subscribed: {my_bool}')
print(result) # 👉️ None
相反,将值存储在变量中并将变量传递给 print()
函数。
my_bool = True
result = f'is subscribed: {my_bool}'
print(result) # 👉️ is subscribed: True
使用格式化字符串文字的替代方法是将多个逗号分隔的参数传递给 print()
函数。
# 👇️ is subscribed: True
print('is subscribed:', True)
# 👇️ is subscribed:True
print('is subscribed:', True, sep='')
默认情况下,当我们将多个逗号分隔的参数传递给
print()
函数时,它们会被空格分隔。
我们可以将 sep
关键字参数设置为空字符串以删除分隔符。
注意
,我们不应尝试在 bool 和 str 类型的值之间使用加法 (+
) 运算符。
my_bool = True
my_str = 'is subscribed: '
# ⛔️ TypeError: can only concatenate str (not "bool") to str
result = my_str + my_bool
加法 (
+
) 运算符左侧和右侧的值需要是兼容的类型。
要解决此问题,需要将布尔值转换为字符串并将两个字符串连接起来。
my_bool = True
my_str = 'is subscribed: '
result = my_str + str(my_bool)
print(result) # 👉️ is subscribed: True
我们使用 str()
类将布尔值转换为字符串,因此我们可以连接两个字符串并打印结果。
如果我们不确定变量存储什么类型,请使用内置的 type()
类。
my_str = 'is subscribed:'
print(type(my_str)) # 👉️ <class 'str'>
print(isinstance(my_str, str)) # 👉️ True
my_bool = True
print(type(my_bool)) # 👉️ <class 'bool'>
print(isinstance(my_bool, bool)) # 👉️ True
type
函数返回对象的类型。
如果传入的对象是传入类的实例或子类,则 isinstance
函数返回 True。
相关文章
Python for 循环中的下一项
发布时间:2023/04/26 浏览次数:179 分类:Python
-
本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。
Python While 循环用户输入
发布时间:2023/04/26 浏览次数:148 分类:Python
-
我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。
在 Python 中将整数转换为罗马数字
发布时间:2023/04/26 浏览次数:87 分类:Python
-
本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。
在 Python 中将罗马数字转换为整数
发布时间:2023/04/26 浏览次数:144 分类:Python
-
本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。
在 Python 中读取 gzip 文件
发布时间:2023/04/26 浏览次数:70 分类:Python
-
本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。
在 Python 中锁定文件
发布时间:2023/04/26 浏览次数:141 分类:Python
-
本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等
在 Python 中将 PDF 转换为文本
发布时间:2023/04/26 浏览次数:196 分类:Python
-
在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。
在 Python 中创建临时文件
发布时间:2023/04/26 浏览次数:53 分类:Python
-
本文讲解了tempfile库函数的四个子函数:TemporaryFile、NamedTemporaryFile、mkstemp、TemporaryDirectory。 每个部分都提供了适当的程序,以简化对概念的理解。