Lỗi khi insert row vào table SQL dùng python pandas

Mọi người giúp em lỗi này với ạ. Query của em execute được trong SQL.

Typeerror: nonetype’ object is not iterable

Code:

import pyodbc
import pandas as pd 
#conn = podbc.connect("Driver={SQL Server};Server = ACER; Database=fin; uid=ACER\User")
 
server = 'ACER'
db = 'fin'

# Create the connection
conn = pyodbc.connect('DRIVER={SQL Server};SERVER=' + server + ';DATABASE=' + db + ';Trusted_Connection=yes')

# query db
sql = """INSERT INTO [fin].[dbo].[items] (itemdate, itemtype, name, amount) VALUES('2017-04-01','income','bonus',350) """
df = pd.read_sql(sql, conn)
print(df.to_string())
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?