About 5,400,000 results
Open links in new tab
  1. How to use while True in Python - GeeksforGeeks

    Jul 23, 2025 · This makes while True loops extremely useful for cases where you want to keep doing something until a certain condition inside the loop tells you to stop. Example 1: In this example, we …

  2. python - try block inside while statement - Stack Overflow

    Aug 1, 2012 · I'm just starting out with Python 2.7 and I don't understand why something is happening: In the following code, an embellished version of an example from the python 2.7.2 tutorial, I get an …

  3. While Try Except in Python 3 - Stack Overflow

    Jan 25, 2018 · python python-3.x while-loop try-except Improve this question edited Jan 25, 2018 at 9:58 Chris_Rands

  4. Handle A Python Exception Within While A Loop

    Aug 14, 2025 · Learn 4 proven methods to handle Python exceptions in while loops with real-world examples. Master try-except blocks, error handling, and best practices.

  5. Python中的while True:怎么理解? - 知乎

    一般情况下while 后面都是一个判断语句,然后判断True 或者 False,再决定执行循环里的语句 但是while True 这个语句就直接告诉你判断的结果了,会一直执行循环里的语句 类似的写法还可以是 while 1, …

  6. python中为什么要用while True try except - CSDN文库

    Apr 26, 2024 · Python中的while True try except是一个循环结构,用于不断尝试执行某个代码块,如果出现异常则捕获并处理异常,然后继续执行循环。这种结构通常用于需要不断重试的操作,比如网络请 …

  7. Pythonの「while True:」による無限ループの解説 - HeadBoost

    Feb 23, 2019 · つまり条件が常にTrue(=真)であれば、指定の処理を永遠に繰り返す無限ループになるということです。 Pythonでは、そのような無限ループを作りたい時は、次のように「while True …

  8. Die While-True-Anweisung in Python - Delft Stack

    Oct 10, 2023 · Die while True-Anweisung wird verwendet, um eine unendliche while-Schleife in Python anzugeben.

  9. Python Try Except - GeeksforGeeks

    Jul 23, 2025 · Python provides a keyword finally, which is always executed after the try and except blocks. The final block always executes after the normal termination of the try block or after the try …

  10. 8. Erreurs et exceptions — Documentation Python 3.14.3

    8. Erreurs et except ions ¶ Jusqu'ici, les messages d'erreurs ont seulement été mentionnés. Mais si vous avez essayé les exemples vous avez certainement vu plus que cela. En fait, il y a au moins …