这是我的第一个问题,我的python和英语也有点差,希望你能理解......
我正在尝试循环浏览 excel 列中的行。最后几行返回无,我的代码有什么问题?
import win32com.client
excel = win32com.client.Dispatch("Excel.Application")
for n in range(1,200):
n=repr(n)
cell = "b"+ n
lis = (excel.ActiveWorkbook.Activesheet.Range(cell))
if lis != "":
print(lis)
else:
print("There's nothing here")
它为白色行打印 None ,而不是 There's nothing here。
非常感谢您的帮助。