如何使此脚本更有效?

时间:2017-05-25 21:04:55

标签: python

我有一个python脚本,它执行以下操作:

def callAPI():
    #call the API here and get a response
    return APIResponseValue

do while callAPI() > 5:
    if callAPI() = 2:
        #do something        
do while callAPI() < 5:
    #do something else here

在do while语句中,我想从callAPI获取值。如何在不重新运行API调用的情况下获得该值,就像我在上面做的那样?我知道如何获得该值的唯一方法是包含类似&#34; value = callAPI()&#34;在do while语句中。谢谢您的帮助。我显然还在学习。

1 个答案:

答案 0 :(得分:1)

这样的事情:

ul > h1 > ol > p { 
    /*some properties for paragraph in the ol with the h1 in the ul*/ 
}

请注意,在开始第一个循环之前分配变量,然后调用&#34; callAPI()&#34;在每个循环结束时再次运行。