Python Forum
what is wrong with my code
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
what is wrong with my code
#1
import sqlite3
id1 = input('Enter the book id: ')
conn = sqlite3.connect("KJV+.SQLite3")
c = conn.cursor()
c.execute("select * from verses where book_number = ? and chapter = 1 and verse = 1" %  id1)
text = c.fetchmany(1)
print(text)
                   
error:
Error:
c.execute("select * from verses where book_number = ? and chapter = 1 and verse = 1" % id1) TypeError: not all arguments converted during string formatting
Reply


Messages In This Thread
what is wrong with my code - by 53535 - Apr-07-2022, 10:30 AM
RE: what is wrong with my code - by ibreeden - Apr-07-2022, 10:59 AM
RE: what is wrong with my code - by 53535 - Apr-07-2022, 11:09 AM
RE: what is wrong with my code - by ibreeden - Apr-07-2022, 11:17 AM
RE: what is wrong with my code - by 53535 - Apr-07-2022, 11:37 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  im not sure what ive done wrong code doesnt run dgizzly 3 1,415 Nov-16-2022, 03:02 AM
Last Post: deanhystad
  What's wrong with my code? NeedHelpPython 4 2,295 Oct-22-2021, 07:59 PM
Last Post: Yoriz
  Help with my code due 11:59 pm, can you tell me where I went wrong and help fix it? shirleylam852 1 2,727 Dec-09-2020, 06:37 AM
Last Post: stranac
  I am getting an incorrect average, and not sure why? What's wrong with my code? shirleylam852 8 4,806 Nov-20-2020, 05:32 AM
Last Post: deanhystad
  Something is Wrong with my code susmith552 4 3,090 Nov-28-2019, 02:16 AM
Last Post: susmith552
  What is wrong with my code? Than999 1 2,413 Nov-10-2019, 08:59 PM
Last Post: ichabod801
  Wrong output on my code. JTNA 2 7,982 Apr-04-2019, 01:55 PM
Last Post: JTNA
  Why is this code wrong? Lemmy 4 5,234 Apr-05-2018, 03:46 PM
Last Post: Lemmy
  What's wrong with my code and visuals for python? beginnercoder04 2 2,871 Mar-17-2018, 01:06 AM
Last Post: beginnercoder04
  whats wrong with my code? syntax errors r6lay 5 6,565 Mar-16-2017, 04:14 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

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