所以我有这个功能,可以从包含法语单词和英语翻译词典的字典中打印键及其值。
def affiche_dico(dic):
k_l = list(dic.keys()) #the keys are the french words
v_l = list(dic.values()) #the values are the translations in english
i = 0
for i in range(len(k_l)):
print(k_l[i], " = ", v_l[i])
我的问题是,如何仅为某个字母打印键及其相应的值。例如,如果我只想要以“ a”开头的单词,该怎么做?
答案 0 :(得分:2)
您可以直接在字典上进行迭代,而无需将键和值存储到单独的列表中。
var maskedResult = unmasked.format("NNN.NNN.NNN-NN", oldString: "unmasked")