2 Antworten
+ 4
Check this out.
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2434/?ref=app
Hope it helps...
+ 1
Samiul Hasnat Taseen range(start,stop,step). Stop is not included in result.
When you see range(10) it means range from 0 to 10 with step 1 (last number is 9). Range(2,8) is 1,2,3,4,5,6,7. Range(3,10,3) is 3,6,9