Re: [Tutor] Need to create code

2013-12-10 Thread Danny Yoo
Hi Thomas, In order to use mailing list like Python-tutor effectively, you'll probably want to read: http://www.catb.org/~esr/faqs/smart-questions.html In particular, pay special attention to: http://www.catb.org/~esr/faqs/smart-questions.html#homework You're basically violating the "

Re: [Tutor] Need to create code

2013-12-10 Thread Mark Lawrence
On 10/12/2013 15:45, Matthew Thomas wrote: Write a function named *SSN2Name* with an interactive loop. The function takes the dictionary named*data*as input argument where this dictionary stores the key, value pairs of SSN, name of person. The SSN is in the string format 'xxx-xx-' and name is

Re: [Tutor] Need to create code

2013-12-10 Thread Alan Gauld
On 10/12/13 15:45, Matthew Thomas wrote: Write a function named *SSN2Name* with an interactive loop. This is obviously some kind of homework exercise. We do not do your homework for you but we will give you pointers or clarify issues if you get stuck. But we expect you to make a start, post yo

[Tutor] Need to create code

2013-12-10 Thread Matthew Thomas
Write a function named SSN2Name with an interactive loop. The function takes the dictionary named data as input argument where this dictionary stores the key, value pairs of SSN, name of person. The SSN is in the string format 'xxx-xx-' and name is also a string. Each iteration of the func