# 설치conda install -c conda-forge mysql-connector-pythonimport mysql.connectortry: # # 데이터베이스 연결 conn = mysql.connector.connect( host="localhost", # 또는 IP 주소 user="root", # MySQL 사용자 password="sktkfka5", database="testdb", # 사용할 데이터베이스명 ) # 커서 생성 cursor = conn.cursor() print("mysql 연결성공") # ? 생성 cursor.execute( """ create table if n..