5 points
*
Didn’t work. Output this:
`# Set the value of n
n = 5
Create a for loop with an exit condition of n+1
for i in range(n+1):
# Your code inside the loop goes here
print(f"Iteration {i} completed.")
This line will be executed after the loop is done
print(“Loop finished.”)`
Interesting. The code format doesn’t work on Kbin.
6 points
3 points
*
I think I fucked up the exit condition. It was supposed to create an infinite loops as it increments n, but always needs 1 more to exit.
2 points
What if you just told it to exit on n = -1? If it only increments n, it should also go on forever (or, hell, just try a really big number for n)
2 points
1 point
*