About 8,200,000 results
Open links in new tab
  1. 有人知道或者见过loop in sb.的用法吗?还请解释下~~ - 知乎

    Apr 25, 2012 · Loop的本意是环和圈的意思。 loop sb. in就是拉人进去某个圈子,可以是虚构的社交圈,也可以是实际的项目或者活动等等。 常用的表达有in (outta)the loop或者keep …

  2. 半导体工艺小白,想问问半导体工艺中的loop是什么意思啊?有 ...

    Apr 12, 2023 · 这个比较简单。打个比方,你要做个面包,可能从前到后所有的步骤包括和面,揉面,醒面,整形,烤制等步骤。然后你可以把 和面,揉面,醒面加起来叫一个准备面团的loop …

  3. How can I access the index value in a 'for' loop? - Stack Overflow

    The fastest way to access indexes of list within loop in Python 3.7 is to use the enumerate method for small, medium and huge lists. Please see different approaches which can be used …

  4. How to make for loop without iterator variable? - Stack Overflow

    Is it possible to do following without the i? for i in range (some_number): # do something If you just want to do something N amount of times and don't need the iterator.

  5. Difference between "while" loop and "do while" loop

    Sep 2, 2010 · A do-while loop guarantees the execution of the loop at least once because it checks the loop condition AFTER the loop iteration. Therefore it'll print the string and call scanf, …

  6. Difference between ( for... in ) and ( for... of ) statements?

    Difference for..in and for..of: Both for..in and for..of are looping constructs which are used to iterate over data structures. The only difference between them is the entities they iterate over: …

  7. Python: Continuing to next iteration in outer loop

    Although, depending on the use case you may not break the inner loop, continuing an outer loop inside its inner loop implicitly suggests that you want to immediately jump to the first line of the …

  8. How to stop one or multiple for loop (s) - Stack Overflow

    How to stop one or multiple for loop (s) Asked 14 years, 4 months ago Modified 2 years, 5 months ago Viewed 447k times

  9. Is there a difference between "pass" and "continue" in a for ...

    14 In your example, there will be no difference, since both statements appear at the end of the loop. pass is simply a placeholder, in that it does nothing (it execution to the next statement). …

  10. Loop through an array in JavaScript - Stack Overflow

    Jun 10, 2010 · 133 In JavaScript it's not advisable to loop through an Array with a for-in loop, but it's better to use a for loop such as: