我在读取 python请求库中的 models.py 文件时发现了一个奇怪的函数调用。不幸的是,我试图在python官方文档中找到一些解释,但是没有成功。您是否知道为什么可能发生这种情况,或者如何在函数调用中使用逻辑运算符?这些是良好做法的一部分吗?请在下面找到代码。
fields = to_key_val_list(data or {})
files = to_key_val_list(files or {})
答案 0 :(得分:1)
这种事情在python编程语言中非常常用
fields = to_key_val_list(data or {}) # this means, that if boolean value of data variable is False, use empty dict/or anything you want.
还
class Foo:
def __init__(self, data: list):
self.data = data or 'abc' # if data will be empty list self.data will become 'abc'
您也可以使用和。和/或两者都可用。
val = a or b or c # in the chain, if a is False, value of val would become b. if be is False also, then c
val = a and b and c # "and" checks values of whole chain. if a is False, so val will have same value as a. if all is true in chain, the last element value will be inside val.