我正在使用 abaqus,我想从 excel 文件(如(x,y,z))中读取值,我想在 excel 文件本身中获得它的输出。请指导我,我一直在尝试,但我没有得到太多。
enter code here
# -*- coding: mbcs -*-
from part import *
from material import *
from section import *
from assembly import *
from step import *
from interaction import *
from load import *
from mesh import *
from optimization import *
from job import *
from sketch import *
from visualization import *
from connectorBehavior import *
from xlrd import *
file_location=('C:\Users\Lenovo\Desktop/calling.xlsx')
workbook=xlrd.open_workbook(file_location)
sheet=workbook.sheet_by_index(0)
for col in range(sheet.ncols)
sheet.cell_value(nrow,col)
当我运行此脚本时,错误会弹出无效文件。