1

说如果我有以下情况:

mydict = {
   a: 'A'
}

如何检查a字典中是否存在密钥?伪代码如下:

%if 'a' in mydict.keys()
  ${mydict['a']}
%endif
4

1 回答 1

2

您可以使用in

from mako.template import Template
t = Template("""
% if key in d:
    key is in dictionary
% else:
    key is not in dictionary
% endif
""")


print t.render(key='a', d={'a': 'A'})  # prints "key is in dictionary"
于 2013-09-04T21:49:04.867 回答