Re: [Tutor] Help with Multiple Inheritance in Classes

2017-02-09 Thread Vusa Moyo
Thanks so much. You've been a great help. You have confirmed that the lecture's question is flawed. Appreciate the help. Regards Vusa On Thu, Feb 9, 2017 at 12:02 PM, Alan Gauld via Tutor <tutor@python.org> wrote: > On 09/02/17 09:25, Vusa Moyo wrote: > > > class

Re: [Tutor] Help with Multiple Inheritance in Classes

2017-02-09 Thread Vusa Moyo
d = "Burmese cat" color = "grey" value = 3000.00 When I run this command, I still receive the same error. print(Cat1.description()) Please assist where possible. Regards Vusa On Wed, Feb 8, 2017 at 11:06 AM, Alan Gauld via Tutor <tutor@python.org> wrote: >

[Tutor] Help with Multiple Inheritance in Classes

2017-02-07 Thread Vusa Moyo
I have a suspicion my lecturer's question is flawed, so I'd like to pose it to you guys to confirm my suspicions. Here goes.. I've gone and created a Class Cat1(cat): <-- inherited class, but cant seem get the code right which allows the test code to run successfully. We have a class defined

Re: [Tutor] os.popen - using commands and input %

2015-11-16 Thread Vusa Moyo
ids[i]], shell=True)) ... 60772 106112 3168 13108 14876 8028 3328 8016 139424 6037524 5570492 4128 144364 154980 154980 >>> pmap_str [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] I;m assuming the zero's are exit codes, which then populate the list, which is not what I'm after. . On Mon, Nov 16, 201

Re: [Tutor] os.popen - using commands and input %

2015-11-16 Thread Vusa Moyo
he subprocess output to my list. Thanks for the help everyone :-) On Mon, Nov 16, 2015 at 3:07 PM, Vusa Moyo <sow...@gmail.com> wrote: > The following code seems to be pointing me to the right direction, BUT, my > list has 0's instead of the output generated. > &

Re: [Tutor] Messy - Very Messy string manipulation.

2015-10-29 Thread Vusa Moyo
Thanks Meenu. str.translate. Worked like a charm for python 3.5. And thanks Alan Gauld for the 2.7 version. Appreciate the help guys. You guys are awesome. Regards Vusa On Wed, Oct 28, 2015 at 6:23 PM, meenu ravi wrote: > Hi Vusa, > > I was not able to reply

[Tutor] Messy - Very Messy string manipulation.

2015-10-28 Thread Vusa Moyo
Hi Guys, I've written a script to remove vowels from a string/sentence. the while loop I'm using below is to take care of duplicate vowels found in a sentence, ie anti_vowel('The cow moos louder than the frog') It works, but obviously its messy and n00by. Any suggestions on how I can write

Re: [Tutor] Help with return results statement.

2015-10-22 Thread Vusa Moyo
= [lloyd, alice, tyler] print(get_class_average(students)) bother = get_class_average([lloyd, alice, tyler]) print(get_letter_grade(bother)) = Appreciate it. Regards Vusa On Thu, Oct 22, 2015 at 11:14 AM, Alan Gauld <alan.ga...@btinternet.com> wrote: > On 22/10/15 10:03, Vusa Moyo w

Re: [Tutor] Help with return results statement.

2015-10-22 Thread Vusa Moyo
/15 12:29, Vusa Moyo wrote: > >> Hi there. My script is as follows, >> > > alice = { >> "name": "Alice", >> "homework": [100.0, 92.0, 98.0, 100.0], >> "quizzes": [82.0, 83.0, 91.0], >> "tests&q

[Tutor] Help with return results statement.

2015-10-20 Thread Vusa Moyo
Hi there. My script is as follows, lloyd = { "name": "Lloyd", "homework": [90.0, 97.0, 75.0, 92.0], "quizzes": [88.0, 40.0, 94.0], "tests": [75.0, 90.0] } alice = { "name": "Alice", "homework": [100.0, 92.0, 98.0, 100.0], "quizzes": [82.0, 83.0, 91.0], "tests":