Re: [Tutor] Chapter 4 Help

2013-04-26 Thread Alan Gauld
On 26/04/13 22:02, Mariel Jane Sanchez wrote: program should calculate the number of vowels in the phrase using a for loop. The second time, your program should use a while loop." My code: phrase = raw_input("Please enter a phrase: ") VOWELS = "aeiou" new = "" for letter in phrase: if VO

Re: [Tutor] Chapter 4 Help :p:

2013-04-26 Thread Paradox
On 04/27/2013 05:02 AM, Mariel Jane Sanchez wrote: I was in Seattle for 4 days for our band trip so i miss some classes. Chapter 4 Project 1 "Write a program that asks for a phrase, and then calculates and displays the number of vowels in the phrase, twice. The first time, your program should

[Tutor] Chapter 4 Help

2013-04-26 Thread Mariel Jane Sanchez
I was in Seattle for 4 days for our band trip so i miss some classes. Chapter 4 Project 1 "Write a program that asks for a phrase, and then calculates and displays the number of vowels in the phrase, twice. The first time, your program should calculate the number of vowels in the phrase using a f