i have been asked to write a function which should be called in this way
foo("Hello")
This function also has to return values in this way:
[Hello( user = 'me', answer = 'no', condition = 'good'),
Hello( user = 'you', answer = 'yes', condition = 'bad'),
]
the task has clearly asked to return string values. can anyone understand the purpose of this task in concepts of Python and help me on this? would you please give me a code sample?
Hellooverride its__str__method and create another method which returns the list (array) of Object Hello with the desired attributes..... – shahjapan Oct 12 '10 at 9:31do_my_homework_for_me.com. – S.Lott Oct 12 '10 at 10:14