find the error -
def counting (n):
for i = range (1,n):
print i
Answers
Answered by
0
Explanation:
here we defined the function but did not call the function so it will not print the out put so it will show an error statement
Similar questions