当前位置: 首页>>代码示例>>Python>>正文


Python Element.attrib['value']方法代码示例

本文整理汇总了Python中elementtree.ElementTree.Element.attrib['value']方法的典型用法代码示例。如果您正苦于以下问题:Python Element.attrib['value']方法的具体用法?Python Element.attrib['value']怎么用?Python Element.attrib['value']使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在elementtree.ElementTree.Element的用法示例。


在下文中一共展示了Element.attrib['value']方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: encode

# 需要导入模块: from elementtree.ElementTree import Element [as 别名]
# 或者: from elementtree.ElementTree.Element import attrib['value'] [as 别名]
 def encode(key, value):
     element = Element(key)
     if isinstance(value, NoneType):
         element.attrib['type'] = 'none'
     elif isinstance(value, BooleanType):
         element.attrib['type'] = 'bool'
         element.attrib['value'] = value and 'true' or 'false'
     elif isinstance(value, ComplexType):
         element.attrib['type'] = 'complex'
         element.attrib['re'] = repr(value.real)
         element.attrib['im'] = repr(value.imag)
     elif isinstance(value, FloatType):
         element.attrib['type'] = 'float'
         element.attrib['value'] = repr(value)
     elif isinstance(value, IntType):
         element.attrib['type'] = 'int'
         element.attrib['value'] = repr(value)
     elif isinstance(value, LongType):
         element.attrib['type'] = 'long'
         element.attrib['value'] = repr(value)
     elif isinstance(value, StringType) or isinstance(value, UnicodeType):
         element.attrib['type'] = 'cdata'
         element.text = u"<![CDATA[%s]]>" % value
     elif isinstance(value, DictType):
         element.attrib['type'] = 'dict'
         for key in value.keys():
             element.append(encode(key, value[key]))
     elif isinstance(value, ListType):
         element.attrib['type'] = 'list'
         for subvalue in value:
             element.append(encode('value', subvalue))
     elif isinstance(value, TupleType):
         element.attrib['type'] = 'tuple'
         for subvalue in value:
             element.append(encode('value', subvalue))
     else:
         raise TypeError("Encoding of %s not supported (Key: %s)" % (repr(value), key))
     return element
开发者ID:sfluehnsdorf,项目名称:MetaPublisher2,代码行数:40,代码来源:xmldict.py


注:本文中的elementtree.ElementTree.Element.attrib['value']方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。