Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
m=input("Enter A Word (in lowercase): ")
i=0
length=0
for i in m:
    length=length+1

if "a">m>"z" :
    print("Input:" + m +" is incorrect! Please try again.")
    b=True
elif "A"<=m<="Z" or "A">m>"Z":
    b=True
    print("Input:" + m +" is incorrect! Please try again.")
elif "a"<=m<="z":
    b=False
    while b==False:
        for x in range(length):
            for y in range(x+1,length):
                if "a"<=m[x]<="z" and "a"<=m[y]<="z":
                    i=0
                    count=0
                    for i in range(length):
                        if m[i]=="a" or m[i]=="e" or m[i]=="i" or m[i]=="o" or m[i]=="u" :
                            count=count+1
                            consonants=length-count
                        else:
                            consonants=length-count                                                        
                else:

##                    print("Input:" + m +" is incorrect! Please try again.")
                    b=True
                    break
                break
        break



else:
    b=True
    print("Input:" + m +" is incorrect! Please try again.")


while b==True :
    m=input("Enter A Word (in lowercase): ")
    length=0

    for i in m:
        length=length+1

    if "a">m>"z" :
        print("Input:" + m +" is incorrect! Please try again.")
        b=True
    elif "A"<=m<="Z" or "A">m>"Z":
        b=True
        print("Input:" + m +" is incorrect! Please try again.")
    elif "a"<=m<="z":
        b=False
        while b==False:
            for x in range(length):
                for y in range(x+1,length):
                    if "a"<=m[x]<="z" and "a"<=m[y]<="z":


                        i=0
                        count=0
                        for i in range(length):
                            if m[i]=="a" or m[i]=="e" or m[i]=="i" or m[i]=="o" or m[i]=="u" :
                                count=count+1
                                consonants=length-count

                            else:
                                consonants=length-count    

                    else:

##                        print("Input:" + m +" is incorrect! Please try again.")
                        b=True
                        break

                    break
            break

    else:
        b=True
        print("Input:" + m +" is incorrect! Please try again.")

print("VOWELS   : " + str(count))
print("CONSONANTS : " + str(consonants))            
print(length)   

The problem is that when the user enters wrong input. then it has to print ("wrong input"), and ask for input again.

How can I stop the two for loops so that it only prints one time?

share|improve this question
2  
We'd like to help you but your English, like your Python, in completely incomprehensible. – Adam Byrtek Oct 22 '10 at 23:19
1  
@rahul : You have ample space for words. Avoid chat language. It isn't cool. No, you can't derive the problem by running the code. It is better to explain it. Also it would be good, if you can format your code. – pyfunc Oct 22 '10 at 23:20
okea..........so above is my program and my error is that when the user inter invalid input that is characters other than lower case chracters then it has to ask the user to input aGAin but as i said my program is working properly only thing i want to know is when suppose user enter apple123 so it is invalid input because all the characters are not in lower case but my program is dealing with it very well my only single issue is it has to print one time that print("Input:" + m +" is incorrect! Please try again.") just one time but because of the for loop it also moving along the for loop.. – rahul Oct 22 '10 at 23:26
and making print statements according to the size of string – rahul Oct 22 '10 at 23:26
6  
@rahul: (1) Do Not Comment On Your Own Question. Update your question. (2) Use capital letters at the start of sentences. (3) Use punctuation marks. (4) Post the smallest code that shows your problem -- not all the code you own. Please focus us onto something specific. We don't have time to wade through a lot of junk. – S.Lott Oct 22 '10 at 23:29
show 4 more comments

closed as too localized by BoltClock Apr 22 '12 at 11:54

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

I never thought one could write incomprehensible program in python.

At the end of it you just count vowels and consonants, if I were to remove the bells and whistles that is user input etc !!

Think differently :)

>>> vowels = 'aeiou'
>>> word = 'ddndnddjdnljdnddnwjddjwdbkbuydfadaddddnd'
>>> dict((c, word.count(c)) for c in word if c in vowels)
{'a': 2, 'u': 1}
>>> word = 'ddndnddjdnljdnddnwjddjwdbkbuydfadaddddndaaaaiiiee'
>>> dict((c, word.count(c)) for c in word if c in vowels)
{'a': 6, 'i': 3, 'u': 1, 'e': 2}
>>> 

Rework your program, see if you can simplify and edit your post. This is better than solving the issue of printing twice.

[Edit:]

Ok, You should write the program yourself. Some idea :

Idea:

While Flag is True
   word = get user input
   Another Flag = False
   for every character in word
       IF valid # if it is between a-z
          count vowels and consonants 
       ELSE 
          Another Flag = True
          break from loop
   IF Another Flag is True # then something went wrong

   ELSE
      # ALL went fine
      Print length, vowel count, consonant count
      Flag = False  
share|improve this answer
basically all i can say is there are lots of other ways but i have to make with it with just using if else and for loops – rahul Oct 22 '10 at 23:40
@rahul: Even then you can take a stab at changing your program. There are better ways. If you did that other issues might get resolved automatically as you will attain better clarity. By the way is this a homework? – pyfunc Oct 22 '10 at 23:41
no it is a program in my book and on monday i have midterem – rahul Oct 22 '10 at 23:42
This is a homework, and you should do it yourself. Stop asking for answers without even attempted to debug it. It's your education, not ours. – ABCD Oct 23 '10 at 0:37

To increase readability you might want to split your code up. Group different parts of functionality into functions. Perhaps you can make one function that deals with user input, one that validates the input and one that counts the vowels and consonants. With this approach you can concentrate on a single peace of functionality at a time.

Another benefit from this approach comes when you have to change functionality, when it is split up in logical blocks you don't have to dig through a lot of (spaghetti)code to find what you need to change and you reduce the risk of breaking a part of your program that already works correctly.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.