Если нет в Python
Я новичок в Python и получаю синтаксическую ошибку с моей первой программой. Можете ли вы помочь исправить синтаксис?
GET_CONTACT = "SELECT LINKEDIN_URL, CONTACT_ID from PERSON where LINKEDIN_URL=%s"
def isContactExists(linkedinUrl):
cur.execute(GET_CONTACT, (linkedinUrl, ))
return cur.fetchone()
if existing_contact is not None:
storeInTempTable(record)
return
Выдает синтаксическую ошибку -
storeInTempTable(record)
^
TabError: inconsistent use of tabs and spaces in indentation
1 ответ
У вас есть пробелы и табуляция обоих в вашем коде. Не смешивайте пробел и табуляцию.
GET_CONTACT = "SELECT LINKEDIN_URL, CONTACT_ID from PERSON where LINKEDIN_URL=%s"
def isContactExists(linkedinUrl):
cur.execute(GET_CONTACT, (linkedinUrl, ))
return cur.fetchone()
if existing_contact is not None:
storeInTempTable(record)
return