+ 11
Why doesn't code work? Result: cold it sunny today
15 Answers
+ 13
Марина , the issue is the incrementation of "i". It is in if clause, so it will not be incremented in all cases. Put it one level to the left on same position as "if".
BTW, indentation width is not as recommended like 4 spaces.
+ 12
Марина
The problem is the i = i + 1 is inside the if clause statement.
https://code.sololearn.com/cVMR35eMW8va/?ref=app
+ 5
《 Nicko12 》 ,thank you very much 🙏🙏
+ 4
《 Nicko12 》, ok, thank you 🤗
+ 4
Марина
Your Code is fixed
This is just an another way of doing this :)
text = " it is cold and sunny outside today"
textList = text.split()
newList = []
for x in textList:
if textList.index(x) % 2 == 0:
newList.append(x)
newList = sorted(newList ,key = lambda x : x[-1])
print(" ".join(newList))
+ 2
Ipang, I Need to select the last letter in a word and sort.
+ 2
Ipang ,
What output are you getting from this code 🧐?
For me, it's showing no output. I was expecting at least first 3 lines to run properly.
+ 2
Ipang ,
I C.
It used to show something like "Time out" previously. Maybe they broke something on back-end. lol.
+ 2
Марина You're Welcome!
And BTW
I know this is off topic, but this is about indentions.
Be careful with the indention in SoloLearn, sometimes they are not alligned even with the SAME number of SPACES.
And when it happens, it causes an error.
Try delete all spaces then space again, that way it will get alligned. Just additional Info
+ 2
Akgul Owmadowa , Rahmat don't spam.
+ 1
What is the sorting criteria?
Check indentation in while-loop maybe?
+ 1
🇮🇳Omkar🕉
Yes, previously an infinite loop gives timeout message. Maybe they did something in some updates dunno for sure 😁
- 2
Salam
- 3
Hi
How are you?