python 字符串格式化举例
时间: 2023-08-19 19:10:49 浏览: 111
回答: 在Python中,字符串格式化可以通过使用百分号(%)来实现。例如,我们可以使用%s格式符将一个值插入到一个有字符串格式符%s的字符串中。比如,如果我们有一个变量name的值为"John",我们可以使用以下代码进行字符串格式化:print("My name is %s." % name)。这将输出"My name is John."。[1]另外,我们还可以使用%d格式符来插入一个整数值。例如,如果我们有一个变量age的值为25,我们可以使用以下代码进行字符串格式化:print("I am %d years old." % age)。这将输出"I am 25 years old."。[3]除了%s和%d之外,还有其他格式符可以用于不同类型的数据。例如,%f可以用于浮点数,%c可以用于字符等等。[2]通过使用不同的格式符,我们可以根据需要对字符串进行格式化。
相关问题
Python3 格式化输出举例
Python3中的格式化输出可以使用字符串的format()方法或者-string来实现。下面是两种方式的举例:
1. 使用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.
```
2. 使用f-string进行格式化输出(Python3.6及以上版本支持):
```python
name = "Bob"
age = 30
print(f"My name is {name}, and I am {age} years old.")
```
输出结果:
```
My name is Bob, and I am 30 years old.
```
在上述例子中,我们使用了占位符{}来表示需要被替换的部分,然后通过format()方法或者在字符串前加上f来指示需要进行格式化输出。
python 拼接字符串
在 Python 中,可以使用 "+" 号或者 "{}" 格式化字符串的方式来拼接字符串。举例如下:
使用 "+" 号:
```
str1 = "Hello"
str2 = "world"
result = str1 + " " + str2
print(result)
```
输出结果为:
```
Hello world
```
使用 "{}" 格式化字符串:
```
str1 = "Hello"
str2 = "world"
result = "{} {}".format(str1, str2)
print(result)
```
输出结果为:
```
Hello world
```
阅读全文