1
for i in names:
dict[i] = {'firstname': name[i]['firstname'],
'lastname': name[i]['lastname']}
print dict[0]['firstname'] # John
print dict[0]['lastname'] # Doe
# group similar lastnames, along with their firstnames
# ...
return render_to_response('index.html', dict)
我想要以相似的姓氏結尾的姓名組合。 例如,輸出應該是:Python字典問題。如何分組類似的字符串?
<html>
<body>
<h1> Doe </h1>
<p> John, Jason, Peter </p>
<h1> Avery </h1>
<p> Kelly, Brittany </p>
</body>
</html>
的「H1」的標籤都應該包含最後名稱和「P」標籤第一名稱。
我該怎麼做?
通過「similar」你實際上是指「相等」? – 2011-01-18 21:52:43
糟糕。是的,這就是我的意思。 – user216171 2011-01-18 23:29:29