python基础教程读书笔记 第45页 © python培训
python基础教程读书笔记 第45页
http://book.douban.com/annotation/28599288/
格式化字符串输出
语法: 含%的字符串 % (值)
智普教育@jeapedu.com$ python
Python 2.7.3 (default, Apr 10 2013, 05:09:49)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> st = "your age is %d sex is %s"
>>> va = (24, 'Male')
>>> print st % va
your age is 24 sex is Male
>>>
智普教育 PYthon培训 www.jeapedu.com
http://book.douban.com/annotation/28599288/
格式化字符串输出
语法: 含%的字符串 % (值)
智普教育@jeapedu.com$ python
Python 2.7.3 (default, Apr 10 2013, 05:09:49)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> st = "your age is %d sex is %s"
>>> va = (24, 'Male')
>>> print st % va
your age is 24 sex is Male
>>>
智普教育 PYthon培训 www.jeapedu.com