在 Python 中将空格添加到字符串的开头
使用 str.rjust()
方法在字符串的开头添加空格,例如 result = my_str.rjust(6, ' ')
。 rjust 方法获取字符串的总宽度和一个填充字符,并使用提供的填充字符将字符串的开头填充到指定的宽度。
my_str = 'abc'
result_1 = my_str.rjust(6, ' ')
print(repr(result_1)) # 👉️ ' abc'
result_2 = " " * 3 + my_str
print(repr(result_2)) # 👉️ ' abc'
result_3 = f'{my_str: >6}'
print(repr(result_3)) # 👉️ ' abc'
代码片段中的第一个示例使用 str.rjust
(右对齐)方法。
str.rjust
方法采用以下 2 个参数:
- width 填充字符串的总长度
- fillchar 用于填充字符串的填充字符
rjust
方法使用提供的填充字符将字符串的开头填充到指定的宽度。
另一种解决方案是使用乘法运算符将特定数量的空格添加到字符串的开头。
my_str = 'abc'
result_2 = " " * 3 + my_str
print(repr(result_2)) # 👉️ ' abc'
当一个字符相乘时,它会重复指定的次数。
print(repr(' ' * 3)) # 👉️ ' '
print('b' * 3) # 👉️ 'bbb'
我们还可以使用格式字符串语法在字符串的开头添加空格。
my_str = 'abc'
result_3 = f'{my_str: >6}'
print(repr(result_3)) # 👉️ ' abc'
这有点难读,但我们基本上将字符串填充到 6 个字符的长度,使其向右对齐。
如果您将字符串的总长度存储在变量中,请使用大括号。
width = 6
result_3 = f'{my_str: >{width}}'
print(repr(result_3)) # 👉️ ' abc'
格式化字符串文字 f-strings
让我们通过在字符串前加上 f
来在字符串中包含表达式。
my_str = 'is subscribed:'
my_bool = True
result = f'{my_str} {my_bool}'
print(result) # 👉️ is subscribed: True
确保将表达式用大括号括起来 - {expression}
。
相关文章
Python pandas.pivot_table() 函数
发布时间:2024/04/24 浏览次数:82 分类:Python
-
Python Pandas pivot_table()函数通过对数据进行汇总,避免了数据的重复。
在 Python 中将 Pandas 系列的日期时间转换为字符串
发布时间:2024/04/24 浏览次数:894 分类:Python
-
了解如何在 Python 中将 Pandas 系列日期时间转换为字符串
在 Python Pandas 中使用 str.split 将字符串拆分为两个列表列
发布时间:2024/04/24 浏览次数:1124 分类:Python
-
本教程介绍如何使用 pandas str.split() 函数将字符串拆分为两个列表列。
在 Pandas 中将 Timedelta 转换为 Int
发布时间:2024/04/23 浏览次数:231 分类:Python
-
可以使用 Pandas 中的 dt 属性将 timedelta 转换为整数。
Python 中的 Pandas 插入方法
发布时间:2024/04/23 浏览次数:112 分类:Python
-
本教程介绍了如何在 Pandas DataFrame 中使用 insert 方法在 DataFrame 中插入一列。
使用 Python 将 Pandas DataFrame 保存为 HTML
发布时间:2024/04/21 浏览次数:106 分类:Python
-
本教程演示如何将 Pandas DataFrame 转换为 Python 中的 HTML 表格。
如何将 Python 字典转换为 Pandas DataFrame
发布时间:2024/04/20 浏览次数:73 分类:Python
-
本教程演示如何将 python 字典转换为 Pandas DataFrame,例如使用 Pandas DataFrame 构造函数或 from_dict 方法。
如何在 Pandas 中将 DataFrame 列转换为日期时间
发布时间:2024/04/20 浏览次数:101 分类:Python
-
本文介绍如何将 Pandas DataFrame 列转换为 Python 日期时间。