如何修复 Python Visio Converter 中的循环

How to fix for loop in Python Visio Converter

我正在尝试 运行 一个 for 循环,但是当它到达某个日期时让它停止,并且它这样做了,但是,当我只想要 1. 该程序以某种方式根据它在 Excel 中的行号打印形状的数量。不确定如何解决此问题,我们将不胜感激。

from PIL import Image, ImageDraw, ImageFont
import win32com.client
from win32com.client import constants as vis
app = win32com.client.gencache.EnsureDispatch( 'Visio.Application' )

current = datetime.datetime(*xlrd.xldate_as_tuple(sheet3.cell_value(7,9), wb.datemode))
currentDate = current.strftime('%m/%d')
dateList = []
for row in range(1,sheet3.nrows):
    if sheet3.cell_value(row,13) == "":
        continue
    date = datetime.datetime(*xlrd.xldate_as_tuple(sheet3.cell_value(row,13), wb.datemode))
    dateList.append(date.strftime('%m/%d'))
    for date in dateList:
        x1 = sheet3.cell_value(row,14)
        x2 = sheet3.cell_value(row,15)
        y1 = sheet3.cell_value(row,16)
        y2 = sheet3.cell_value(row,17)
        borderColor = 0
        borderType = 0
        colorValue = sheet3.cell_value(9,10)
        colorFunc(x1,y1,x2,y2)
        shape.Cells('FillforegndTrans').FormulaU = sheet3.cell_value(7,10)
    if currentDate == date:
        break

我想通了。我不需要 for 循环,只需要在末尾声明一个 if 语句,如果 currentDate 在 dateList 中,则中断。

dateList = []
for row in range(1,sheet3.nrows):
    if sheet3.cell_value(row,13) == "":
        continue
    date = datetime.datetime(*xlrd.xldate_as_tuple(sheet3.cell_value(row,13), wb.datemode))
    dateList.append(date.strftime('%m/%d'))
    current = datetime.datetime(*xlrd.xldate_as_tuple(sheet3.cell_value(7,9), wb.datemode))
    currentDate = current.strftime('%m/%d')
    x1 = sheet3.cell_value(row,14)
    x2 = sheet3.cell_value(row,15)
    y1 = sheet3.cell_value(row,16)
    y2 = sheet3.cell_value(row,17)
    borderColor = 0
    borderType = 0
    colorValue = sheet3.cell_value(9,10)
    colorFunc(x1,y1,x2,y2)
    shape.Cells('FillforegndTrans').FormulaU = sheet3.cell_value(7,10)
    if currentDate in dateList:
        break