Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Colaboratory Problem: Lesson 5 Debugging Loops, Infinite Loops Exercise #295

Open
mikaturner opened this issue Feb 23, 2023 · 0 comments
Open

Comments

@mikaturner
Copy link

mikaturner commented Feb 23, 2023

The colaboratory notebook version of this exercise is incorrect, it shows:
num = 10
while num >= 0:
print(num)
num = num - 1

It should be updated to match the github version as that appears to be what the description text is talking about

num = 0
while num <= 10:
print(num)

num += 2

@mikaturner mikaturner changed the title Lesson 5 Debugging Loops, Infinite Loops Exercise Notebook Problem: Lesson 5 Debugging Loops, Infinite Loops Exercise Feb 23, 2023
@mikaturner mikaturner changed the title Notebook Problem: Lesson 5 Debugging Loops, Infinite Loops Exercise Colaboratory Problem: Lesson 5 Debugging Loops, Infinite Loops Exercise Feb 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant