+ 2
How it started printing from 5, not from 1?
4 Respuestas
+ 7
I think he is talking about this lesson:
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2462/
+ 5
Link your code so we can know what's wrong.
+ 3
python:
for i in range(5,100):
print(i)
-------------
c++/java/c# etc:
for(int i = 5; i < 100; i++){
//print i
}
+ 2
I am talking about this lesson:
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2462/?ref=app