Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help | float to Int in xlrd
#1
Hello,
I'd built a SQL generator for a project which reads data from .xlsx file and gives Insert statement as output on screen.
The code is working fine except it converts INT to Float in output.
I need same data format as input for call fields which can be string, int etc.
Please advise on below code i'd created.

# Date:13/May/2019
# Created By : Vinil Mehta
# Objective: Create SQL(Insert) statements from data provided in excel file.

import xlrd

excel_sheet = 'test.xlsx'
Book1 = xlrd.open_workbook( excel_sheet )
sheet1 = Book1.sheet_by_index( 0 )
print( "Opened Sheet Name:", sheet1.name )

column_headers = sheet1.row_values( 0 )
X = ','.join( str(a) for a in column_headers )


for row in range( 1, sheet1.nrows ):
    row_data = sheet1.row_values(row)
    print( 'insert into  ' + str( sheet1.name ) + ' (' + X + ') values (' + str(
         sheet1.row_values( row ) ).strip( '[]' ) + ');' )
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  python calculate float plus float is incorrect? sirocawa 6 283 Apr-16-2024, 01:45 PM
Last Post: DeaD_EyE
  Selecting correct xlrd version Kithsiri 4 543 Feb-27-2024, 07:09 AM
Last Post: Kithsiri
  Does "import xlrd" work in Thonny? cnutakor 3 3,009 Apr-30-2020, 12:41 AM
Last Post: Larz60+
  Issues installing xlrd KipCarter 2 2,839 Jan-24-2020, 12:20 PM
Last Post: KipCarter
  XLRD Package not be able to call dhiliptcs 2 2,301 Sep-24-2019, 05:21 PM
Last Post: dhiliptcs
  ImportError: No module named xlrd dhiliptcs 5 17,486 Sep-21-2019, 12:17 PM
Last Post: brighteningeyes
  Comaparing Float Values of Dictionary Against A Float Value & Pick Matching Key firebird 2 3,386 Jul-25-2019, 11:32 PM
Last Post: scidam
  Does XLRD have a method to extract embedded objects (pdf) from an excel sheet? matthewme 1 2,500 Jun-13-2019, 10:00 PM
Last Post: Larz60+
  How to obtain the background color of a cell using xlrd? Krszt 1 12,486 Mar-12-2019, 11:23 PM
Last Post: hshivaraj
  Iterate over excel-sheets using xlrd tobbs 6 12,416 Feb-28-2019, 08:33 PM
Last Post: tobbs

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020