已采纳回答 / 慕九州0000942
首先 sum初始值为0,x初始值为2在while循环中,对sum和x的操作都是一样的,因此sum始终比x小2,(sum,x)=(0,2)(2,4)。。。(98,100)最后,当sum=98,x=100时跳出循环,故而sum=98
2016-07-09
已采纳回答 / 慕粉3535989
len是length的簡寫,就是在d那個括號内有多少個string,譬如d={'apple','banana','pear','strawberry'},那麽在括號内有4個string,len(d)就是4
2016-07-09
已采纳回答 / kk520320
[start:stop:step]start 包括第一位 省略则为列表等数据结构的第一个元素stop 不包括最后一位数step 指的是步长,步长为几,则为几的倍数题主加油,慢慢来
2016-07-08
已采纳回答 / 慕粉3125971
isinstance函数的原型是:isinstance(object, classinfo)Return true if the object argument is an instance of the classinfo argument, or of a (direct or indirect) subclass thereof. Also return true if classinfo is a type object (new-style class) and object is an obj...
2016-07-07