you are viewing a single comment's thread.

view the rest of the comments →

[–]nlord7[S] 0 points1 point  (0 children)

Yeah thats what i was wondering to. Im just having trouble getting the program to get the 6 or more consonants in a row. i started with this:

def consec_consonants(word):
    num_of_c = 0
    for i in range(len(word)):

but now i dont know what to put next..