SoloLearn's python code interpreter is finicky
Hello, I'm taking python novice as a refresher, so as not to tackle intermediate then advanced without a good review. but when I code, I confirm on another desktop (ubuntu 22.04) and it works. I'd like to have a button that says : [ my solution works, please accepts as-is] i.e. 1] Common Block : words = ["cat", "car", "code", "home", "learn", "fun", "job", "love", "friend", "zoo", "enjoy", "happiness", "family", "goal", "desire"] 2] sololearn : letter = input() for i in words: if letter in i: print(i) 3] mine : #your code goes here lettre=input("what is your letter: ") for word in words: if lettre in word: print (word They both give the same output .. I cannot hardcode the letter as it tests against multiple (random) ones.