Python ValueError: invalid literal for int () with base 10 practical solution

Source: Internet
Author: User

Python ValueError: invalid literal for int () with base 10 practical solution

This article mainly introduces the Python ValueError: invalid literal for int () with base 10 practical solution. This article uses a clever method to solve this problem. for more information, see

Today, when I was writing a crawler program, because I had to flip pages and split pages

The Code is as follows:

TotalCount = '000000' totalPage = int (totalCount)/20

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

Someone suggested using round (float ("1.0") for the same error on the Internet, but it cannot solve this problem. round (float ("1.0 ″)) is used to convert a floating point to an integer,

This is because the original string is converted to an integer before division. Although no error may be reported within a period of time, it will prompt after a long time (in fact, it is a warning, but it will forcibly terminate your program). The correct solution is as follows:

The Code is as follows:

Remove non-numeric characters from the string. Test availability

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.