对字符串做格式化操作
1、string.capwords()
把字符串中所有单词的首字母均变成大写字母。看例子:
>>> a=‘Tom is a boy and Kate is a girl.‘ >>> import string >>> b=string.capwords(a) >>> b ‘Tom Is A Boy And Kate Is A Girl.‘
2、Template
指定文档模板,把字符串按照指定模板的格式输出。
具体可以看这个链接的讲解:
https://www.cnblogs.com/subic/p/6552752.html
原文地址:https://www.cnblogs.com/tuobeiwoniu/p/8678164.html
时间: 2024-11-09 03:46:50