iis服务器助手广告广告
返回顶部
首页 > 资讯 > 后端开发 > Python >python print中的format怎么使用
  • 549
分享到

python print中的format怎么使用

2023-07-05 16:07:40 549人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

这篇文章主要介绍了python print中的fORMat怎么使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python print中的format怎么使用文章都会有所收获,下面我们一起来看看吧。变量插入字

这篇文章主要介绍了python print中的fORMat怎么使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python print中的format怎么使用文章都会有所收获,下面我们一起来看看吧。

变量插入字符串的方法

Python中的format()函数是一种将变量插入字符串的方法,能够使字符串更易于阅读和理解。它支持许多不同的用法,以下是具体的用法和说明:

  • 使用位置参数传递变量

name = 'John'age = 25print('My name is {}, and I am {} years old.'.format(name, age))# 输出:My name is John, and I am 25 years old.
name = 'John'age = 25print('My name is {0}, and I am {1} years old.'.format(name, age))# 输出:My name is John, and I am 25 years old.
  • 使用关键字参数传递变量

name = 'John'age = 25print('My name is {n}, and I am {a} years old.'.format(n=name, a=age))# 输出:My name is John, and I am 25 years old.
  • 格式化数字

price = 19.99print('The price is ${:.2f}'.format(price))# 输出:The price is $19.99
  • 对齐文本

text = 'Hello'print('{:>10}'.format(text))  # 右对齐输出,总宽度为10# 输出:     Helloprint('{:^10}'.format(text))  # 居中输出,总宽度为10# 输出:  Hello   print('{:<10}'.format(text))  # 左对齐输出,总宽度为10# 输出:Hello
  • 使用格式化字符串(Python 3.6及以上版本)

name = 'John'age = 25print(f'My name is {name}, and I am {age} years old.')# 输出:My name is John, and I am 25 years old.
  • 使用字典传递变量

person = {'name': 'John', 'age': 25}print('My name is {name}, and I am {age} years old.'.format(**person))# 输出:My name is John, and I am 25 years old.
  • 使用下标操作符获取列表中的元素

fruits = ['apple', 'banana', 'cherry']print('My favorite fruit is {0[1]}'.format(fruits))# 输出:My favorite fruit is banana
  • 使用花括号转义

print('{{Hello}}'.format())  # 输出:{Hello}
  • 使用冒号分隔格式字符串和变量名称,对变量进行进一步格式化

name = 'John'score = 95print('Student: {0:&lt;10} Score: {1:.2f}'.format(name, score))# 输出:Student: John       Score: 95.00
  • 根据变量类型自动选择格式

x = 42y = 3.14print('x is {!r}, y is {!s}'.format(x, y))# 输出:x is 42, y is 3.14
  • 使用填充字符

x = 42print('{:0&gt;5}'.format(x))  # 右对齐,用 0 填充,总宽度为 5# 输出:00042
  • 根据变量类型选择不同的进制输出

x = 42print('bin: {0:b}, oct: {0:o}, hex: {0:x}'.format(x))# 输出:bin: 101010, oct: 52, hex: 2a
  • 自定义格式化函数

def format_salary(salary):    if salary > 10000:        return '{:.1f}K'.format(salary / 1000)    else:        return '${:,.2f}'.format(salary)print(format_salary(5000))   # $5,000.00print(format_salary(15000))  # 15.0K
  • 使用 ** 和 * 进行动态参数传递

data = {'name': 'John', 'age': 25}print('{name} is {age} years old.'.format(**data))  # John is 25 years old.fruits = ['apple', 'banana', 'cherry']print('My favorite fruits are {}, {} and {}.'.format(*fruits))  # My favorite fruits are apple, banana and cherry.

关于“python print中的format怎么使用”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“python print中的format怎么使用”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网Python频道。

--结束END--

本文标题: python print中的format怎么使用

本文链接: https://www.lsjlt.com/news/353119.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作