0

Ans is wombat but I don't know the working of. for i in range(len(first),0,-1): function please explain

first = "wombat" second = " " for i in range(len(first),0,-1): second = first[i-1] + second Print(second)

12th Feb 2019, 4:01 AM
Shaik Abeedh
Shaik Abeedh - avatar
1 Réponse
+ 6
The for in loop here is like : for i in range (len (first),0,-1): Length of first is 6. Hence, the loop will iterate from 6 to 0. -1 is specifying that loop will go in descending order rather than ascending order. That's why it will go from 6 to 0 and not from 0 to 6. Jay Matthews has explained further part pretty well.
12th Feb 2019, 4:47 AM
Arushi Singhania
Arushi Singhania - avatar
Aujourd'hui en vedette
.
1 Votes
What?
0 Votes
HTML
0 Votes
Web
0 Votes
Quiz duel
0 Votes
FRC Coding?
1 Votes
AI
2 Votes
help
0 Votes
APIs
1 Votes