便利套餐

nihilo的Python项目详细描述


此软件包允许您进行奇妙的导入:

>>> from nihilo import nihil

这是一个很好的对象,它的行为像没有,但接受方法调用。 你为什么要这个?

所以,我们有:

>>> a_dict = { 'who': 'Parmenides' }
>>> print a_dict.get('who')
Parmenides
>>> print a_dict.get('where')
None
但您可能需要这样做:
>>> a_dict.get('who').startswith('g')
False
>>> a_dict.get('where').startswith('g')
Traceback (most recent call last):
...
AttributeError: 'NoneType' object has no attribute 'startswith'
使用nihil,您可以做到:
>>> print a_dict.get('where', nihil).startswith('g')
nihil()

注意,casting to bool返回false,因此您可以轻松测试..:

>>> if a_dict.get('where', nihil).startwith('g'):
...   print "got it!"
是非常灵活的,它也可以让你调用几乎任何方法。 它将返回自身:

>>> nihil.foo.bar('quux', frop=True)
nihil()

记住,前尼希罗·尼希尔适合。

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java传递实现接口的内部类   java为什么managedbean方法在post请求中的过滤器调用之前调用   java Android应用程序在Android M,O上崩溃,登录A/libc时出错:tid 17938中的致命信号11(SIGSEGV),代码2,故障地址0x343a2944   java JPA存储库。findByAll()返回null,但数据库中存在所有内容   用于发送电子邮件的java Ant脚本   Java小程序HTML页面发生了奇怪的事情   在Postman的请求正文中传递多个JSON数据,并使用Jersy(JXRS)进入Java Rest API   无法强制转换java DAO类   10分钟后重新连接java   正则表达式如何在java中选择字符串直到某个字符   java我的输出有一些问题   Objective中的java时间段   java如何在新屏幕上基于按钮单击在webview中打开url   java哪个selenium版本与Firefox ESR 45.2.0兼容   java无法使用Apache Camel 3.1.0将XML转换为JSON