PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
# Sanelisiwe Ndlovu, you have an extra whitespace
# When indenting, try to follow the block correctly
num = int(input())
# while num >= 0: # creating a block of the while loop.
while num >= 0:
print(num)
num = num -1
# keep your indentations correct. If you indent 4 whitespaces to begin with, then your next indentation is the same 4 whitespaces.
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run