Re: [Tutor] recursive function password check

2013-02-06 Thread Prasad, Ramit
Mara Kelly wrote: > Hi everyone, trying to write a program that has the user enter a password, > checks if it contains any vowels, and > if it does prints ' It is false that password(whatever the user enters) has > no vowels,' and if it has no vowels > prints it is True that password has no vowel

Re: [Tutor] recursive function password check

2013-02-06 Thread Dave Angel
On 02/06/2013 08:44 AM, Mara Kelly wrote: Hi everyone, trying to write a program that has the user enter a password, checks if it contains any vowels, and if it does prints ' It is false that password(whatever the user enters) has no vowels,' and if it has no vowels prints it is True that pass

Re: [Tutor] recursive function password check

2013-02-06 Thread Dave Angel
m@python.org] On Behalf Of Simon Yan Sent: Wednesday, February 06, 2013 9:11 AM To: Mara Kelly Cc: tutor@python.org Subject: Re: [Tutor] recursive function password check On Wed, Feb 6, 2013 at 9:44 PM, Mara Kelly mailto:schooluse1...@yahoo.com>> wrote: Hi everyone, trying to write a pro

Re: [Tutor] recursive function password check

2013-02-06 Thread Noriko Tani
2013 9:11 AM To: Mara Kelly Cc: tutor@python.org Subject: Re: [Tutor] recursive function password check On Wed, Feb 6, 2013 at 9:44 PM, Mara Kelly mailto:schooluse1...@yahoo.com>> wrote: Hi everyone, trying to write a program that has the user enter a password, checks if it contains a

Re: [Tutor] recursive function password check

2013-02-06 Thread Simon Yan
On Wed, Feb 6, 2013 at 9:44 PM, Mara Kelly wrote: > Hi everyone, trying to write a program that has the user enter a password, > checks if it contains any vowels, and if it does prints ' It is false that > password(whatever the user enters) has no vowels,' and if it has no vowels > prints it is T

Re: [Tutor] recursive function password check

2013-02-06 Thread Hugo Arts
On Wed, Feb 6, 2013 at 1:44 PM, Mara Kelly wrote: > Hi everyone, trying to write a program that has the user enter a password, > checks if it contains any vowels, and if it does prints ' It is false that > password(whatever the user enters) has no vowels,' and if it has no vowels > prints it is T

[Tutor] recursive function password check

2013-02-06 Thread Mara Kelly
Hi everyone, trying to write a program that has the user enter a password, checks if it contains any vowels, and if it does prints ' It is false that password(whatever the user enters) has no vowels,' and if it has no vowels prints it is True that password has no vowels... Here is what I have so