이제 드디어 먼가 해볼 차례 입니다. 지난 시간에 우리는 아래와 같은 코드를 넣어서 파이썬, mysql, 아나콘다의 연동을 확인 하였습니다. import MySQLdb db = MySQLdb.connect(host="localhost", user="test", passwd="12345678", db="test") cursor = db.cursor() cursor.execute("SELECT VERSION()") data = cursor.fetchone() print(data) cursor.close() db.close() 근데 이제 이거 필요 없습니다. 그냥 싹다 지우세요. 그리고 […]