Question #67

Which code will run forever?

The while loop executes a set of statements as long as a condition is true. Here, while True: makes the statement print("Python") execute indefinitely. (w3schools.com/python/python_while_loops.asp)


Comment on Disqus:

Question difficulty: 🔵🔵🔵🔵🔵


Similar questions: