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 8960523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:40:38+00:00 2026-06-15T15:40:38+00:00

Im trying to get the user to input the length and width of a

  • 0

Im trying to get the user to input the length and width of a rectangle at the same time.

length,width = float (raw_input("What is the length and width? ")).split(',')

When I run the program, however, and enter two variables such as 3,5 I get an error saying that I have an invalid literal for type float().

  • 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-06-15T15:40:39+00:00Added an answer on June 15, 2026 at 3:40 pm

    First, why does this fail:

    float (raw_input("What is the length and width? ")).split(',')
    

    The split(',') splits a string into a sequence of strings. You can’t call float on a sequence of strings, only on a single string. That’s why the error says it’s “an invalid literal for type float”.

    If you want to call the same function on every value in a sequence, there are two ways to do it:

    Use a list comprehension (or a generator expression):

    [float(x) for x in raw_input("What is the length and width? ")).split(',')]
    

    Or the map function:

    map(float, raw_input("What is the length and width? ")).split(','))
    

    I would use the list comprehension, because that’s what the BDFL prefers, and because it’s simpler for other things you may want to do like x[2], but it really doesn’t matter that much in this case; it’s simple enough either way, and you should learn what both of them mean.

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

Sidebar

Related Questions

I'm trying to get edit text to behave in this way: User can input
I'm trying to figure out how to upload an image and get user input
I am trying to get the standard deviation of a user input string. I
I'm trying to get user GUID from Active Directory. My code: DirectoryEntry entry =
hi I am trying to get user profile information like this once the authentication
I am trying to get the user defined global hot key for my application.
I am trying to get if user is logined in facebook, if yes then
I'm trying to get the user to confirm if they want to delete a
Hello I am trying to get the user profile picture and then merge into
I'm trying to get to grips with web2py/python. I want to get the user

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.