我发现自己经常输入以下内容(为 Django 开发,如果相关的话):
if testVariable then:
myVariable = testVariable
else:
# something else
或者,更常见的是(即建立一个参数列表)
if 'query' in request.POST.keys() then:
myVariable = request.POST['query']
else:
# something else, probably looking at other keys
有没有我不知道的捷径可以简化这一点?有那种逻辑的东西myVariable = assign_if_exists(testVariable)
?