0
Write the output after removing the error in given code: for a in range(10,0,-2) print (a)
how to solve it
4 odpowiedzi
+ 11
Rohit Chanotra
You can easily try that by yourself in code playground 👍
Hope you understand..
+ 3
You missed a colon ':' and there is an indentation error
for a in range(10,0,-2):
print (a)
Take a look at this lesson
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2434/
0
In which programming language?🤔