首页 > 其他 > 详细

笔记1

时间:2020-02-05 22:46:38      阅读:72      评论:0      收藏:0      [点我收藏+]
def tag(name, *content, cls=None, **attrs):
if cls is not None:
attrs[‘class‘] = cls
if attrs:
attr_str = ‘‘.join(‘ %s="%s"‘ % (attr,value ) for attr, value in sorted(attrs.items()))
else:
attr_str = ‘‘
if content:
value=‘\n‘.join(‘<%s%s>%s</%s>‘ % (name,attr_str,c,name) for c in content)
return value
else:
value= ‘<{}{} />‘.format(name, attr_str)
return value

print(tag(‘br‘))
print(tag(‘p‘,‘hello‘))
print(tag(‘P‘,‘hello‘,id=33))
print(tag(‘p‘,‘hello‘,‘world‘,cls=‘sidebar‘))
print(tag(content=‘testing‘,name=‘img‘))
my_tag={‘name‘:‘img‘,‘title‘:‘subtitle‘,‘src‘:‘sunset.img‘,‘cls‘:‘framed‘}
print(tag(**my_tag))#字典中所有元素作为单个参数传入

笔记1

原文:https://www.cnblogs.com/xuyuchen/p/12266755.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!