Workaround for Python to decimal numbers when reading Excel data using XLRD

Source: Internet
Author: User

When Python reads Excel data using XLRD, integers become decimals:

Workaround:

1. One of the simple things is to add a comma in English before the cell contents of the number and date. If the data is more, you can also batch add commas prefix (online there are methods). (This is relatively suitable when the amount of data is relatively small, if the amount of data is relatively large, we recommend that you use Method 2)

2. The CType of the contents of the cell is determined by the program code to resolve

Instance:

For I in range (rows):

    If i==0:
Continue
Row_content = []
For j in Range (COLS-1):
CType = Sheet.cell (i, J). CType # Table data type
Cell = Sheet.cell_value (i, J)

If CType = = 2 and cell% 1 = = 0.0: # CType is 2 and floating point
cell = Int (cell) # Floating-point to Integer


Print (cell)


After successful execution:


Workaround for Python to decimal numbers when reading Excel data using XLRD

Related Article

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.