gpt4 book ai didi

python - 查找列表(从 Excel 导入)中的最高/最低行中的内容 - Python3

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

所以到目前为止我所做的就是从 Excel 中导入一些随机行并猜测列表中哪一行较高/较低;正确答案是最高行。因此,我的行已正确导入和打印,但现在我需要找到一种方法来将正确答案设置为电子表格中的最高行(1, 78 之间)。

例如。

example = random.sample (example, 3)
print ('a) ' + (example [0]))
print ('b) ' + (example [1]))
print ('c) ' + (example [2]))
input ('example answer= a, b or c?')
CorrectAnswer=input
if CorrectAnswer = True ...

有什么想法可以设置正确和错误的答案,或者可以插入正确的方向吗?

谢谢

最佳答案

如果您将“行”号存储在列表中,则只需使用列表上的排序方法即可:

example.sort()
answer = example[-1]

您还可以迭代数字并存储最大的数字:

answer = 0
for x in example:
if x > answer:
answer = x

这是找到最大数字最慢的方法;我相信Python使用一种更快的排序算法作为排序方法。

关于python - 查找列表(从 Excel 导入)中的最高/最低行中的内容 - Python3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53836289/

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