Let's test your knowledge. Fill in the missing part by typing it in.
The time complexity of the following code is:
1def until(num):
2 i = num
3 while i > 0:
4 print(i)
5 i -= 1
6
7print(until(10))
Write the missing line below.
OUTPUT
Results will appear here.