摘要:
函数可以通过 关键字参数 的形式来调用,形如 keyword = value 。例如,以下的函数: def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'): print "-- This parrot wouldn't", action, print "if you put", vol... 阅读全文
摘要:
学习网址: http://docs.pythontab.com/python/python3.4/introduction.html#tut-numbers 阅读全文
摘要:
tree = ET.parse("Result.xml")root = tree.getroot()print type(root)print root.tag # 得到root 标签print root.text #得到标签的值print root.attrib def parserResultX 阅读全文
摘要:
1 pythontab 中文 http://www . pythontab .com/ 2 python 学习手册 # http://docs. pythontab . com/ 3 python标准库 https://docs.python.org/2.7/library/ 阅读全文