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

  • SEARCH
  • Home
  • 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 7659055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T13:16:55+00:00 2026-05-31T13:16:55+00:00

I have the following reduce function in python which is supposed to return the

  • 0

I have the following reduce function in python which is supposed to return the sum of the ASCII values of all the characters in the string. For example for the string “BOY” the reduce function should return 234.

reduce(lambda x,y:ord(x)+ord(y),list("BOY"))

But im getting the following error:

TypeError: ord() expected string of length 1, but int found

What is the problem with my code?

  • 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-31T13:16:56+00:00Added an answer on May 31, 2026 at 1:16 pm
    reduce(lambda x,y:ord(x)+ord(y),list("BOY"))
    

    Think about how this reduces:

    'B' 'O' 'Y'
    145 'Y'
    

    What is ord(145) + ord('Y')? Its an error.

    Others have suggested:

    reduce(lambda x, y: x + ord(y), "BOY", 0)
    

    Which reduces like:

    0 'B' 'O' 'Y'
    66 'O' 'Y'
    145 'Y'
    234
    

    I’d recommend

    sum(map(ord, "BOY"))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm just learning mapReduce. I have the following map reduce function being called on
I have the following query: view.reduce.group_level(5).keys which returns: [[1f9c79a33f399a7937d880c5f31e8dbc, 2011, 12, 29, 13], [1f9c79a33f399a7937d880c5f31e8dbc,
I have reduced the problem to the following basic function which should simply print
Background I have the following function, which ranks results by how closely they match
I have the following form, which I have reduced as much as I can,
I have following requirement, I have C#/.Net console application, which refers to 'System.Data.Sqlite.dll' 'System.Data.Sqlite.dll'
I have the following Fancybox declarations in my page: <script type=text/javascript> $(document).ready(function() { $(.fancybox).fancybox().hover(function()
I'm trying to make a function array, which I'm using inside a List.reduce HOF.
I have the following code, my employer wants me to reduce the lines of
I have the following controller file: <?php class Test extends CI_Controller { function __construct()

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.