文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python print中的format怎么使用

2023-07-05 16:18

关注

这篇文章主要介绍了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
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怎么使用”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯