Skip to content

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

@mikaturner

Description

@mikaturner

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions