在 Python 中为字符串添加 X 个空格
使用乘法运算符将 X 个空格添加到字符串,例如 result = my_str + ' ' * 2
。 乘法运算符将重复空格指定的次数,加法 (+) 运算符将连接两个字符串。
my_str = 'abc'
# ✅ using addition operator with multiplication
result = ' ' * 2 + my_str
print(repr(result)) # 👉️ ' abc'
result = my_str + ' ' * 2
print(repr(result)) # 👉️ 'abc '
# ----------------------------------
num_of_spaces = 2
# ✅ add trailing spaces to string
result = my_str.ljust(len(my_str) + num_of_spaces, ' ')
print(repr(result)) # 👉️ 'abc '
# ✅ add leading spaces to string
result = my_str.rjust(len(my_str) + num_of_spaces, ' ')
print(repr(result)) # 👉️ ' abc'
第一个示例使用乘法运算符将空格添加到字符串。
乘法运算符可用于将字符串重复指定次数。
my_str = 'abc'
result = ' ' * 2 + my_str
print(repr(result)) # 👉️ ' abc'
result = my_str + ' ' * 2
print(repr(result)) # 👉️ 'abc '
我们只需将空格重复 N 次,然后使用加法运算符连接两个字符串。
我们可以使用乘法运算符将任何字符串重复 N 次。
print(repr(' ' * 2)) # 👉️ ' '
print(repr(' ' * 3)) # 👉️ ' '
print('-' * 2) # 👉️ '--'
print('-' * 3) # 👉️ '---'
或者,我们可以使用 str.ljust()
或 str.rjust()
方法。
my_str = 'abc'
num_of_spaces = 2
# ✅ add trailing spaces to string
result = my_str.ljust(len(my_str) + num_of_spaces, ' ')
print(repr(result)) # 👉️ 'abc '
# ✅ add leading spaces to string
result = my_str.rjust(len(my_str) + num_of_spaces, ' ')
print(repr(result)) # 👉️ ' abc'
str.ljust()
方法使用提供的填充字符将字符串的末尾填充到指定的宽度。
str.ljust()
方法采用以下 2 个参数:
- width 填充字符串的总长度
- fillchar 填充字符串的填充字符
str.rjust()
方法使用提供的填充字符将字符串的开头填充到指定的宽度。
我们将要添加到字符串的空格数添加到其长度,因为
ljust()
和rjust()
方法采用填充字符串的总长度。
相关文章
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 日期时间。