9 lines
229 B
Python
9 lines
229 B
Python
|
|
# 清空计算的坡道参数
|
||
|
|
|
||
|
|
sheet_longitudinal = sheet("longitudinal_profile")
|
||
|
|
|
||
|
|
with sheet_longitudinal:
|
||
|
|
for row in range(sheet_longitudinal.row):
|
||
|
|
for col in range(3, sheet_longitudinal.col):
|
||
|
|
cell(row, col).value = None
|