Hi there,<div><br></div><div>I`m again confused and its the dictionary. As dictionary does not support append I create a variable list with dictionary key values and want to add new values to it and then copy it again to the dictionary as I dont know other methods.</div>
<div><br></div><div><div>mydict = {'Name':('Name1','Name2','Name3'),'Tel':('023333','037777','049999')}</div></div><div><br></div><div>Then I use the key "Name" from the dict</div>
<div><br></div><div>name = mydict['Name']</div><div>and </div><div>tel = mydict['Tel']</div><div><br></div><div>then I want to add at the end new values and doing:</div><div><br></div><div>name.append('Name4')</div>
<div><br></div><div>and I get and error that TUPLE object has no attribute Append !!!</div><div><br></div><div>But how to add new Values to a dictionary then ?</div><div><br></div><div>I know its kind of basics in python, but I was seeking in the python website and even google and could not realise that.</div>
<div><br></div><div>Thank you for your suggestions</div><div><br></div><div>A.H</div><div><br></div>