fmt python
时间: 2023-08-17 17:11:12 浏览: 171
fmt-例子
在 Python 中,有几种不同的方法可以格式化字符串。其中一种常用的方法是使用字符串的 `format()` 方法。这个方法可以通过占位符 `{}` 来插入变量或表达式的值。以下是一个简单的示例:
```python
name = "Alice"
age = 25
print("My name is {} and I am {} years old.".format(name, age))
```
输出结果将是:
```
My name is Alice and I am 25 years old.
```
除了使用占位符外,你还可以指定格式化选项,例如控制字符串的对齐、填充字符、小数位数等。这里有一个使用格式化选项的示例:
```python
number = 42
print("The answer is {:0>5}".format(number))
```
输出结果将是:
```
The answer is 00042
```
这只是 Python 中一种格式化字符串的方式,还有其他方法,如 f-strings 和模板字符串。你可以根据具体需求选择合适的方法。
阅读全文