SyntaxError: invalid syntax 문제에 관해서
글쓴이: eoen2599 / 작성시간: 목, 2015/01/01 - 6:12오후
>>> import urllib2
>>> from urlparse import urljoin
>>> from bs4 import BeautifulSoup
>>> import MySQLdb
>>> db = MySQLdb.connect(host="localhost", user="root", passwd="asdf0731", db="apache")
>>> cursor = db.cursor()
>>> url=urllib2.urlopen('http://www.apache.org')
>>> s=BeautifulSoup(url).find_all('a')
>>>
>>> for parsed_url in s:
... cursor.execute("INSERT INTO test(url) VALUE ({0})".format(urljoin(url, parsed_url["href"])
...
...
... db.commit()
File "", line 5
db.commit()
^
SyntaxError: invalid syntax
에러가 뜨는이유를 잘 모르겠습니다ㅠ아직 제가 많이 모자라서 누군가의 설명이 필요해 이렇게 글을 올립니다..
Forums:
VALUE는 없고 VALUES가 있습니다.
열이 하나일 때는 좀 애매한 keyword이긴 하군요.
댓글 달기