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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T22:39:46+00:00 2026-06-17T22:39:46+00:00

Hi I have an script that look for information and the information is suppose

  • 0

Hi I have an script that look for information and the information is suppose to be integers, but sometime I find a empty string and because of that I get the following error:

ValueError: invalid literal for int() with base 10: ''

I was trying to do the following, but it does not work.

list = ['12', '14', '45', ''] 

for i in list:
    if '' in i:
        i = 0
        i
    else:
        i

This will match everything. It got to be another way and there is no way I can edit the source. Thanks

  • 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-17T22:39:47+00:00Added an answer on June 17, 2026 at 10:39 pm

    Don’t use list as a variable name. Sooner or later you will want to use the builting list and get strange bugs 🙂

    my_list = ['12', '14', '45', ''] 
    
    for i in my_list:
        if not i:
            # i is empty string
        else:
            # ...
    

    I guess the error you have shown is from elsewhere where you are trying to use int(i)

    If i is supposed to be converted to an int, one way to do it is like this

    for i in my_list:
        if not i:
            i = 0
        else:
            i = int(i)
    

    Another way is to use an exception handler

    for i in my_list:
        try:
            i = int(i)
        except ValueError:
            i = 0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have many lines in my script that look like: ./run -f abc.txt ./run
I have following script that executes all the .reg files in the current directory.
I have a script that obtains information about the current folders and subfolders within
I have a script that loads google charts api information into a div. The
I have a python script that parses an XML file that contains part information
I have script that reads remote file content and writes it to local server.
I have this script that run to fix my menu bar to the browser
I have a script that recursively loops through all the sub directories and compresses
I have a script that submits data via an ajax POST. It is called
I have a script that resizes called resize Here is the script: <? echo

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.