我试图理解“隐式”和“显式”在 Python 上下文中的真正含义。
a = []
# my understanding is that this is implicit
if not a:
print("list is empty")
# my understanding is that this is explicit
if len(a) == 0:
print("list is empty")
我试图遵循Python 的禅宗规则,但我很好奇这是否适用于这种情况,或者我是否想得太多了?
炎炎设计
狐的传说
动漫人物
相关分类