本文整理汇总了Python中glove.Glove.meaure方法的典型用法代码示例。如果您正苦于以下问题:Python Glove.meaure方法的具体用法?Python Glove.meaure怎么用?Python Glove.meaure使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类glove.Glove
的用法示例。
在下文中一共展示了Glove.meaure方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_pythonObj
# 需要导入模块: from glove import Glove [as 别名]
# 或者: from glove.Glove import meaure [as 别名]
def test_pythonObj(self):
"""
:return:
"""
class A():
def __init__(self):
self.b1 = B()
self.b2 = B()
self.list = [1000, 23424.2, 'asdf0', u'unicode编码', self.b1]
self.dic = {
132323423412312311: 'utf8编码',
'232': self.b2,
self.b2: set([1,2]),
u'unicode编码': None,
123: (11,1,111),
11: (11,1,111),
}
class B():
def __init__(self):
self.none = None
self.str = '1111'
self.int = 15151515151515155151
self.float = 11231231231212342323.
self.list = [1,2,3,4]
self.dict = {1:2, 2:3}
self.tuple = (1,2,3, 4)
return
glove = Glove(A())
glove.meaure()
print glove.report
示例2: test_measure
# 需要导入模块: from glove import Glove [as 别名]
# 或者: from glove.Glove import meaure [as 别名]
def test_measure(self):
"""
:return:
"""
class A():
pass
a = A()
for i in xrange(100):
a1 = A()
for j in xrange(100):
a2 = A()
setattr(a1, 'a%s' % j, a2)
setattr(a, 'a%s' % i, a1)
glove = Glove(a)
glove.meaure()
print glove.report