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