大家好,欢迎来到IT知识分享网。
Python 的 format() 函数是一种强大的字符串格式化工具,它允许你通过占位符和格式说明符来控制字符串的输出格式。以下是关于 format() 函数的详细用法和示例:
基本用法
1. 使用位置参数
# 使用位置参数进行格式化 result = "Hello, {}! You have {} new messages.".format("Alice", 5) print(result) # 输出: Hello, Alice! You have 5 new messages.
2. 使用关键字参数
# 使用关键字参数进行格式化 result = "Hello, {name}! You have {count} new messages.".format(name="Bob", count=3) print(result) # 输出: Hello, Bob! You have 3 new messages.
3. 混合使用位置参数和关键字参数
result = "Hello, {0}! You have {count} new messages.".format("Charlie", count=7) print(result) # 输出: Hello, Charlie! You have 7 new messages.
高级用法
1. 指定字段宽度和对齐方式
# 指定字段宽度和对齐方式 result = "{:<10} | {:>10}".format("Left", "Right") print(result) # 输出: Left | Right
2. 数字格式化
# 整数格式化 result = "The number is {:d}".format(42) print(result) # 输出: The number is 42 # 浮点数格式化 result = "The value is {:.2f}".format(3.14159) print(result) # 输出: The value is 3.14
3. 千位分隔符
# 添加千位分隔符 result = "The number is {:,}".format() print(result) # 输出: The number is 1,000,000
4. 百分比格式化
# 百分比格式化 result = "Success rate: {:.2%}".format(0.856) print(result) # 输出: Success rate: 85.60%
5. 填充字符
# 使用不同的填充字符 result = "{:*^10}".format("Center") print(result) # 输出: Center
使用字典进行格式化
data = {'name': 'David', 'age': 30} result = "Name: {name}, Age: {age}".format(data) print(result) # 输出: Name: David, Age: 30
f-strings (Python 3.6+)
从 Python 3.6 开始,引入了 f-strings(格式化字符串字面量),提供了一种更简洁、更直观的字符串格式化方法。
name = "Eve" age = 25 result = f"Name: {name}, Age: {age}" print(result) # 输出: Name: Eve, Age: 25
总结
- format() 函数可以通过位置参数和关键字参数进行字符串格式化。
- 可以指定字段宽度、对齐方式、数字格式、千位分隔符、百分比格式等。
- f-strings 提供了一种更简洁的字符串格式化方式,适用于 Python 3.6 及以上版本。
希望这些信息对你理解和使用 format() 函数有所帮助!
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/167644.html