defdouble_eights(n):"""Return true if n has two eights in a row. >>> double_eights(8) False >>> double_eights(88) True >>> double_eights(2882) True >>> double_eights(880088) True >>> double_eights(12345) False >>> double_eights(80808080) False """"*** YOUR CODE HERE ***"count=0whilen>0:ifn%10==8:count+=1else:count=0n=n//10ifcount==2:returnTrueifcount<2:returnFalse
defdouble_eights(n):""" Returns whether or not n has two digits in row that are the number 8. Assume n has at least two digits in it. >>> double_eights(1288) True >>> double_eights(880) True >>> double_eights(538835) True >>> double_eights(284682) False >>> double_eights(588138) True >>> double_eights(78) False >>> from construct_check import check >>> # ban iteration >>> check(LAB_SOURCE_FILE, 'double_eights', ['While', 'For']) True """"*** YOUR CODE HERE ***"ifn==0:returnFalseelse:ifn%10==8:if(n//10)%10==8:returnTrueelifn//10==0:returnFalseelse:returndouble_eights(n//10)else:returndouble_eights(n//10)
defdivide(quotients,divisors):"""Return a dictonary in which each quotient q is a key for the list of divisors that it divides evenly. >>> divide([3, 4, 5], [8, 9, 10, 11, 12]) {3: [9, 12], 4: [8, 12], 5: [10]} >>> divide(range(1, 5), range(20, 25)) {1: [20, 21, 22, 23, 24], 2: [20, 22, 24], 3: [21, 24], 4: [20, 24]} """return{x:[yforyindivisorsify%x==0]forxinquotients}
defdisplay(fruit,count):"""Display a count of a fruit in square brackets. >>> display('apples', 3) '[3 apples]' >>> display('apples', 1) '[1 apple]' >>> display('banana', 2) '[2 bananas]' >>> display('banana', 1) '[1 banana]' """assertcount>=1,"Count must be at least 1"ifcount==1andfruit.endswith('s'):fruit=fruit[:-1]# Convert plural to singularelifcount>1andnotfruit.endswith('s'):fruit+='s'# Convert singular to pluralreturnf'[{count}{fruit}]'
>>>s=[1,2,3,4]>>>next(s)# s is iterable, but not an iteratorTypeError:'list'objectisnotaniterator>>>t=iter(s)# Creates an iterator>>>t<list_iteratorobject...>>>>next(t)# Calling next on an iterator1>>>next(t)# Calling next on the same iterator2>>>next(iter(t))# Calling iter on an iterator returns itself3>>>t2=iter(s)>>>next(t2)# Second iterator starts at the beginning of s1>>>next(t)# First iterator is unaffected by second iterator4>>>next(t)# No elements left!StopIteration>>>s# Original iterable is unaffected[1,2,3,4]
defrepeated(t,k):"""Return the first value in iterator t that appears k times in a row, calling next on t as few times as possible. >>> s = iter([10, 9, 10, 9, 9, 10, 8, 8, 8, 7]) >>> repeated(s, 2) 9 >>> t = iter([10, 9, 10, 9, 9, 10, 8, 8, 8, 7]) >>> repeated(t, 3) 8 >>> u = iter([3, 2, 2, 2, 1, 2, 1, 4, 4, 5, 5, 5]) >>> repeated(u, 3) 2 >>> repeated(u, 3) 5 >>> v = iter([4, 1, 6, 6, 7, 7, 8, 8, 2, 2, 2, 5]) >>> repeated(v, 3) 2 """assertk>1"*** YOUR CODE HERE ***"prev=next(t)try:k1=kwhileTrue:current=next(t)ifprev==current:k1-=1ifk1==1:returnprevelse:k1=k# 重置k1,因为当前元素与前一个不同prev=currentexceptStopIteration:pass# 当迭代器耗尽时退出循环returnprev
defmake_change(amount,coins):ifnotcoins:returnNonesmallest=min(coins)rest=remove_one(coins,smallest)ifamount<smallest:returnNone"*** YOUR CODE HERE ***"ifamount==smallest:return[smallest]with_smallest=make_change(amount-smallest,rest)ifwith_smallestisnotNone:return[smallest]+with_smallestreturnmake_change(amount,rest)
classChangeMachine:def__init__(self,pennies):self.coins={1:pennies}defchange(self,coin):"""Return change for coin, removing the result from self.coins.""""*** YOUR CODE HERE ***"self.coins[coin]=1+self.coins.get(coin,0)# Put the coin in the machineresult=make_change(coin,self.coins)forcinresult:self.coins=remove_one(self.coins,c)returnresult