失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > python 论坛模板_python模板 - PH的个人空间 - OSCHINA - 中文开源技术交流社区

python 论坛模板_python模板 - PH的个人空间 - OSCHINA - 中文开源技术交流社区

时间:2023-01-17 04:34:35

相关推荐

python 论坛模板_python模板 - PH的个人空间 - OSCHINA - 中文开源技术交流社区

看Python帮助文档模板部分,抄下来以备记忆

11.2. Templating

The string module includes a versatile Template class with a simplified syntax suitable for editing by end-users. This allows users to customize their applications without having to alter the application.

The format uses placeholder names formed by $ with valid Python identifiers (alphanumeric characters and underscores). Surrounding the placeholder with braces allows it to be followed by more alphanumeric letters with no intervening spaces. Writing $$ creates a single escaped $:

>>>from string import Template >>>t = Template('${village}folk send $$10 to $cause.') >>>t.substitute(village='Nottingham', cause='the ditch fund') 'Nottinghamfolk send $10 to the ditch fund.'

The substitute() method raises a KeyError when a placeholder is not supplied in a dictionary or a keyword argument. For mail-merge style applications, user supplied data may be incomplete and the safe_substitute() method may be more appropriate — it will leave placeholders unchanged if data is missing:

>>> t = Template('Return the $item to $owner.')

>>> d = dict(item='unladen swallow')

>>> t.substitute(d)

Traceback (most recent call last):

. . .

KeyError: 'owner'

>>> t.safe_substitute(d)

'Return the unladen swallow to $owner.'

Template subclasses can specify a custom delimiter. For example, a batch renaming utility for a photo browser may elect to use percent signs for placeholders such as the current date, image sequence number, or file format:

>>>import time, os.path >>>photofiles = ['img_1074.jpg', 'img_1076.jpg', 'img_1077.jpg'] >>>class BatchRename(Template): ... delimiter = '%' >>>fmt = raw_input('Enter rename style (%d-date %n-seqnum%f-format): ') Enter rename style (%d-date %n-seqnum %f-format): Ashley_%n%f >>>t = BatchRename(fmt) >>>date = time.strftime('%d%b%y') >>>for i, filename in enumerate(photofiles): ... base, ext = os.path.splitext(filename) ... newname = t.substitute(d=date, n=i, f=ext) ... print '{0} --> {1}'.format(filename, newname) img_1074.jpg --> Ashley_0.jpg img_1076.jpg --> Ashley_1.jpg img_1077.jpg --> Ashley_2.jpg

Another application for templating is separating program logic from the details of multiple output formats. This makes it possible to substitute custom templates for XML files, plain text reports, and HTML web reports.

如果觉得《python 论坛模板_python模板 - PH的个人空间 - OSCHINA - 中文开源技术交流社区》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。