python快速对齐
时间: 2023-10-28 19:00:02 浏览: 96
python快速编程入门(第2版)课后答案.pdf
5星 · 资源好评率100%
在Python中,可以使用字符串的`format()`方法或者f-string来实现快速对齐。下面是一些示例代码:
1. 使用`format()`方法对齐:
```python
text = "Python"
aligned_text = "{:<10}".format(text) # 左对齐
print(aligned_text)
aligned_text = "{:>10}".format(text) # 右对齐
print(aligned_text)
aligned_text = "{:^10}".format(text) # 居中对齐
print(aligned_text)
```
输出:
```
Python
Python
Python
```
2. 使用f-string对齐:
```python
text = "Python"
aligned_text = f"{text:<10}" # 左对齐
print(aligned_text)
aligned_text = f"{text:>10}" # 右对齐
print(aligned_text)
aligned_text = f"{text:^10}" # 居中对齐
print(aligned_text)
```
输出同样为:
```
Python
Python
Python
```
您可以根据需要调整对齐的宽度和填充字符。希望对您有所帮助!
阅读全文