如何实现Python中字符串格式化输出?

如何实现Python中字符串格式化输出?,第1张

如何实现Python中字符串格式化输出

Python字符串格式化输出是我们在 *** 作字符串时遇到的形式,本文主要介绍Python字符串格式化输出的四种方法:tuple形式法、字典形式、forma函数法、 StringIO模块。下面是具体使用方法。

1、tuple形式法(方便)

print 'hello %s and %s' % ('df', 'another df')

2、字典形式(好用)

print 'hello %(first)s and %(second)s' % {'first': 'df', 'second': 'another df'}

3、forma函数法(先进)

print('姓名是 {},年龄是 {}'.format('Tom',20))
 
输出:
姓名是:Tom,年龄是:20

4、 StringIO模块(多个数据)

>>> buf = StringIO.StringIO()
>>> sprintf(buf, "A = %d, B = %sn", 3, "foo")
>>> sprintf(buf, "C = %dn", 5)
>>> print(buf.getvalue())
A = 3, B = foo
C = 5

以上就是字符串格式化输出的四种方法,大家根据不同情况可以选择合适的方法,希望能帮到你哦~

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/3013719.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-28
下一篇 2022-09-28

发表评论

登录后才能评论

评论列表(0条)

保存