python中關(guān)于for循環(huán)說法正確的是?
for 循環(huán)是循環(huán)/loop中的一種。
屬于Definite loop。
另一種屬于Indefinite loop。
比如while statement
>>> for letter in word:
???print(letter)
關(guān)鍵字,for ...in
一次打印一個字符,效率比while循環(huán)更高。
下一篇新移民美國繳綠卡費流程
python中關(guān)于for循環(huán)說法正確的是?
for 循環(huán)是循環(huán)/loop中的一種。
屬于Definite loop。
另一種屬于Indefinite loop。
比如while statement
>>> for letter in word:
???print(letter)
關(guān)鍵字,for ...in
一次打印一個字符,效率比while循環(huán)更高。