I want the SQL term to search for the ID that has been given by the user as input.
def autoAusgeben():
autoID = int(input("Id des Autos eingeben: "))
connection = sqlite3.connect("quartett.db")
cursor = connection.cursor()
cursor.execute("SELECT * From autos WHERE Id (?)", (autoID))
autos = cursor.fetchall()
print(autos)