>>> import arcpy
>>> fc=r"D:\楚雄州數據\testdata.gdb"
>>> editor=arcpy.da.Editor(fc)
>>> editor.startEditing(False,True)
>>> tt= arcpy.da.InsertCursor("地名地點",["name","SHAPE@"])
rows = arcpy.da.SearchCursor("BERP3",["NAME","SHAPE@"])
for row in rows:
... print(row[0])
... tt.insertRow([row[0],row[1]])