• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python types.XList类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中Naked.toolshed.types.XList的典型用法代码示例。如果您正苦于以下问题:Python XList类的具体用法?Python XList怎么用?Python XList使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了XList类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: test_xlist_remove_dupes_int

 def test_xlist_remove_dupes_int(self):
     xl = XList([1, 2, 2, 3, 3, 3], {'first_attr': 1})
     nodupe = xl.remove_duplicates()
     self.assertEqual(type(nodupe), type(XList(['test', 'again'])))
     self.assertEqual(nodupe.count(1), 1)
     self.assertEqual(nodupe.count(2), 1)
     self.assertEqual(nodupe.count(3), 1)
开发者ID:chrisidefix,项目名称:naked,代码行数:7,代码来源:test_TYPES_c.py


示例2: test_xlist_multi_wildcard_match

 def test_xlist_multi_wildcard_match(self):
     xl = XList(['many', 'tom', 'Many'], {'first_attr': 1})
     nl = xl.multi_wildcard_match('m*|t*')
     self.assertTrue(len(nl) == 2)
     self.assertTrue('many' in nl)
     self.assertTrue('tom' in nl)
     self.assertFalse('Many' in nl)
开发者ID:chrisidefix,项目名称:naked,代码行数:7,代码来源:test_TYPES_c.py


示例3: test_xlist_difference

 def test_xlist_difference(self):
     xl = XList([1 , 2, 3], {'first_attr': 1})
     xl2 = XList([2, 4, 5])
     diff = xl.difference(xl2)  # returns items in XList that are not in parameter list/XList as set
     self.assertTrue(1 in diff)
     self.assertTrue(3 in diff)
     self.assertFalse(2 in diff)
     self.assertFalse(4 in diff)
     self.assertFalse(5 in diff)
开发者ID:chrisidefix,项目名称:naked,代码行数:9,代码来源:test_TYPES_c.py


示例4: test_xlist_intersection

 def test_xlist_intersection(self):
     xl = XList([1 , 2, 3], {'first_attr': 1})
     xl2 = XList([2, 4, 5])
     inter = xl.intersection(xl2) # returns items in both XList and parameter list/XList
     self.assertTrue(2 in inter)
     self.assertFalse(1 in inter)
     self.assertFalse(3 in inter)
     self.assertFalse(4 in inter)
     self.assertFalse(5 in inter)
开发者ID:chrisidefix,项目名称:naked,代码行数:9,代码来源:test_TYPES_c.py


示例5: test_xlist_map_items

 def test_xlist_map_items(self):
     def cap_val(xlist_item):
         return xlist_item.upper()
     xl = XList(['one', 'two', 'three'], {'first_attr': 1})
     nl = xl.map_to_items(cap_val)
     self.assertTrue('ONE' in nl)
     self.assertTrue('TWO' in nl)
     self.assertTrue('THREE' in nl)
     self.assertFalse('one' in nl)
     self.assertFalse('two' in nl)
     self.assertFalse('three' in nl)
开发者ID:chrisidefix,项目名称:naked,代码行数:11,代码来源:test_TYPES_c.py


示例6: test_xlist_conditional_map_items

        def test_xlist_conditional_map_items(self):
            def true_a(xdict_key):
                return xdict_key.startswith('a')

            def cap_val(xdict_val):
                return xdict_val.upper()

            xl = XList(['all', 'many', 'none'], {'first_attr': 1})
            nl = xl.conditional_map_to_items(true_a, cap_val)
            self.assertTrue('ALL' in nl)
            self.assertFalse('all' in nl)
            self.assertFalse('MANY' in nl)
            self.assertFalse('NONE' in nl)
            self.assertTrue(nl[0] == 'ALL')
            self.assertTrue(nl[1] == 'many')
            self.assertTrue(nl[2] == 'none')
开发者ID:chrisidefix,项目名称:naked,代码行数:16,代码来源:test_TYPES_c.py


示例7: test_xlist_count_case_insensitive_withother

 def test_xlist_count_case_insensitive_withother(self):
     xl = XList(['MANY', 1, 'many'], {'first_attr': 1})
     nl = xl.count_ci('Many')
     self.assertTrue(nl == 2)
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py


示例8: test_xlist_map_items_noreturn_value

 def test_xlist_map_items_noreturn_value(self):
     def no_return(xlist_val):
         x = 1
     xl = XList(['one', 'two', 'three'], {'first_attr': 1})
     nl = xl.map_to_items(no_return)
     self.assertTrue(nl[0] == None)
开发者ID:chrisidefix,项目名称:naked,代码行数:6,代码来源:test_TYPES_c.py


示例9: test_xlist_surround_two_strings

 def test_xlist_surround_two_strings(self):
     xl = XList(['one', 'two', 'three'], {'first_attr': 1})
     nl = xl.surround('<p>', '</p>')
     self.assertTrue('<p>one</p>' in nl)
     self.assertTrue('<p>two</p>' in nl)
     self.assertTrue('<p>three</p>' in nl)
开发者ID:chrisidefix,项目名称:naked,代码行数:6,代码来源:test_TYPES_c.py


示例10: test_xlist_postfix_unicode_char

 def test_xlist_postfix_unicode_char(self):
     xl = XList(['one', 'two', 'three'], {'first_attr': 1})
     nl = xl.postfix('ত')
     self.assertTrue('oneত' in nl)
     self.assertTrue('twoত' in nl)
     self.assertTrue('threeত' in nl)
开发者ID:chrisidefix,项目名称:naked,代码行数:6,代码来源:test_TYPES_c.py


示例11: test_xlist_wildcard_match

 def test_xlist_wildcard_match(self):
     xl = XList(['MANY', 'many', 'Many'], {'first_attr': 1})
     nl = xl.wildcard_match('m*')
     self.assertTrue(len(nl) == 1)
     self.assertEqual(nl[0], 'many')
开发者ID:chrisidefix,项目名称:naked,代码行数:5,代码来源:test_TYPES_c.py


示例12: test_xlist_shuffle

 def test_xlist_shuffle(self):
     xl = XList([1 , 2, 3], {'first_attr': 1})
     nl = xl.random_sample(2)
开发者ID:chrisidefix,项目名称:naked,代码行数:3,代码来源:test_TYPES_c.py


示例13: test_xlist_count_dupes_string_twodupe

 def test_xlist_count_dupes_string_twodupe(self):
     xl = XList(['test', 'test', 'another', 'another', 'last', 'last'], {'first_attr': 1})
     dupes = xl.count_duplicates()
     self.assertEqual(dupes, 3)
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py


示例14: test_xlist_count_dupes_int_twodupe

 def test_xlist_count_dupes_int_twodupe(self):
     xl = XList([1, 2, 2, 3, 3, 3], {'first_attr': 1})
     dupes = xl.count_duplicates()
     self.assertEqual(dupes, 3)
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py


示例15: test_xlist_sum_float

 def test_xlist_sum_float(self):
     xl = XList([1.2 , 2.5, 3.1], {'first_attr': 1})
     total = xl.sum()
     self.assertAlmostEqual(total, 6.8)
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py


示例16: test_xlist_sum_int

 def test_xlist_sum_int(self):
     xl = XList([1 , 2, 3], {'first_attr': 1})
     total = xl.sum()
     self.assertEqual(total, 6)
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py


示例17: test_xlist_min_float

 def test_xlist_min_float(self):
     xl = XList([1.25123 , 2.5234, 3.73423], {'first_attr': 1})
     min_num = xl.min()
     self.assertEqual(min_num, 1.25123)
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py


示例18: test_xlist_min_int

 def test_xlist_min_int(self):
     xl = XList([1 , 2, 3], {'first_attr': 1})
     min_num = xl.min()
     self.assertEqual(min_num, 1)
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py


示例19: test_xlist_max_int

 def test_xlist_max_int(self):
     xl = XList([1 , 2, 3], {'first_attr': 1})
     max_num = xl.max()
     self.assertEqual(max_num, 3)
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py


示例20: test_xlist_random_noexception

 def test_xlist_random_noexception(self): # just confirm that it does not raise exception, can't test result
     xl = XList([1 , 2, 3], {'first_attr': 1})
     nl = xl.random()
     self.assertTrue(type(nl) == type(1))
开发者ID:chrisidefix,项目名称:naked,代码行数:4,代码来源:test_TYPES_c.py



注:本文中的Naked.toolshed.types.XList类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python Netflix.netflix_solve函数代码示例发布时间:2022-05-24
下一篇:
Python types.XDict类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap