Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3317740
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:37:22+00:00 2026-05-17T22:37:22+00:00

This is not a homework question, it is an exam preparation question. I should

  • 0

This is not a homework question, it is an exam preparation question.

I should define a function syllables(word) that counts the number of syllables in
A word in the following way:

• a maximal sequence of vowels is a syllable;

• a final e in a word is not a syllable (or the vowel sequence it is a part
Of).

I do not have to deal with any special cases, such as a final e in a
One-syllable word (e.g., ’be’ or ’bee’).

>>> syllables(’honour’)
2
>>> syllables(’decode’)
2
>>> syllables(’oiseau’)
2

Should I use regular expression here or just list comprehension ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T22:37:23+00:00Added an answer on May 17, 2026 at 10:37 pm

    I find regular expressions natural for this question. (I think a non-regex answer would take more coding. I use two string methods, ‘lower’ and ‘endswith’ to make the answer more clear.)

    import re
    def syllables(word):
        word = word.lower()
        if word.endswith('e'):
            word = word[:-1]
        count = len(re.findall('[aeiou]+', word))
        return count
    
    for word in ('honour', 'decode', 'decodes', 'oiseau', 'pie'):
        print word, syllables(word)
    

    Which prints:

    honour 2
    decode 2
    decodes 3
    oiseau 2
    pie 1
    

    Note that ‘decodes’ has one more syllable than ‘decode’ (which is strange, but fits your definition).

    Question. How does this help you? Isn’t the point of the study question that you work through it yourself? You may get more benefit in the future by posting a failed attempt in your question, so you can learn exactly where you are lacking.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.