while True : ... yield x ... x += 1 ... 實際上,在def所定義的本體中,若包括yield運算式,則Python會將之編譯為一個產生器(Generator)。例如:. >>> myrange(10)
確定! 回上一頁