gpt4 book ai didi

python - 从 Excel 电子表格计算增量数字

转载 作者:太空宇宙 更新时间:2023-11-03 20:41:31 24 4
gpt4 key购买 nike

我想从 Excel 电子表格计算增量数字。现在我只能计算一行的增量数。我想自动化计算增量数的过程。这是我的代码:

import os
os.chdir("/Users/user/Desktop")

import openpyxl
wb = openpyxl.load_workbook('lotto.xlsx')
sheet = wb.active

def delta():
a = sheet['A2'].value
b = sheet['B2'].value - sheet['A2'].value
c = sheet['C2'].value - sheet['B2'].value
d = sheet['D2'].value - sheet['C2'].value
e = sheet['E2'].value - sheet['D2'].value
f = sheet['F2'].value - sheet['E2'].value
return [a, b, c, d, e, f]

delt = delta()
delt.sort()

if delt[-1] < 16:
print("The delta numbers are: " + str(delt))
else:
print("These are not delta numbers.")

这是 Excel 电子表格:

http://ge.tt/3lZEnrw2

最佳答案

您可以迭代所有行:

import openpyxl

def delta(i):
a = sheet[f'A{i}'].value
b = sheet[f'B{i}'].value - sheet[f'A{i}'].value
c = sheet[f'C{i}'].value - sheet[f'B{i}'].value
d = sheet[f'D{i}'].value - sheet[f'C{i}'].value
e = sheet[f'E{i}'].value - sheet[f'D{i}'].value
f = sheet[f'F{i}'].value - sheet[f'E{i}'].value
return sorted([a, b, c, d, e, f])

wb = openpyxl.load_workbook('lotto.xlsx')
sheet = wb.active
for row in range(1, sheet.max_row+1, 1):
d = delta(row)
if d[-1] < 16:
print(f'{d[0]}-{d[1]}-{d[2]}-{d[3]}-{d[4]}-{d[5]}')
else:
print('--------------------')

输出:

--------------------
1-2-3-7-9-10
3-4-6-7-9-15

等等

关于python - 从 Excel 电子表格计算增量数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56836643/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com