Coding Coach - It’s a Sign | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Coding Coach - It’s a Sign

Hello, I have found how the “open” string works but all the “trash” strings are skipping with this code: i = 0 for i in range(4): sign_word = input().split() res = 0 if sign_word == sign_word[::-1]: res = 1 if res == 1: string = "Open" else: string = "Trash" print(string) Could someone give me a suggestion on what error I have in this? Thank you https://sololearn.com/coach/19/?ref=app

2nd Jan 2023, 12:32 AM
Benjamin A Keller
24 Answers
+ 6
Benjamin A Keller , Emerson Prado , the variable name '_' is a regular name for identifiers in python. but it has a special meaning. it indicates that this variable will not been used in the code, we only need it (in this case) to run a for loop. (throwaway variable) but it differs not from other variables, it holds the values that are assigned to it, there is no memory saving given. words = ['hello', 'airport hotel'] for _ in words: print(_) print(_.upper())
3rd Jan 2023, 11:57 AM
Lothar
Lothar - avatar
+ 5
Benjamin A Keller 2 corrections and 2 improvements: The comparison with sign_word expects it to be a string. But the split function makes it a single element list. The code should output"Open" if any word is a palindrome. But you always test all words and output the result of the last one. You need to stop when it finds a palindrome. You don't need to initialize a loop variable which is assigned values in the loop itself. The "res" variable is not needed. See how the 2 "if"s test exactly the same thing.
2nd Jan 2023, 2:00 AM
Emerson Prado
Emerson Prado - avatar
+ 5
Benjamin A Keller, see some hints and a basic code sample in the attached file. https://code.sololearn.com/cypt0S6b6ile/?ref=app
2nd Jan 2023, 4:13 PM
Lothar
Lothar - avatar
+ 5
vikram jeet Sharma , i am not sure what you mean with your description of an error when using split(). i personally could not find a problem using split(), even if we typed a word, a letter, or a space, or nothing at all.2 maybe you can make a short sample of code and various input values for us?
3rd Jan 2023, 12:12 PM
Lothar
Lothar - avatar
+ 3
Dragon RB Pls avoid giving finished code as answer, because it makes the OP skip the most important part of learning. Prefer giving hints for the OP to find the solution instead.
30th Apr 2023, 6:21 PM
Emerson Prado
Emerson Prado - avatar
+ 2
It depends on what you want from this code. Pls include the task description in the question description. Also, pls save your code in Code Playground and include a link to it in the question description. This way, we can run the code and avoid copying errors.
2nd Jan 2023, 1:32 AM
Emerson Prado
Emerson Prado - avatar
+ 2
vikram jeet Sharma Pls don't give finished code as answer, because it makes the OP to skip the most important part of learning process. Always prefer giving hints for the OP to find the solution. That said, note that when you call split on a string, it returns a list. So the first "if" in your code creates an inconsistency: sign_word can have a string or a list, depending on text input.
3rd Jan 2023, 7:17 PM
Emerson Prado
Emerson Prado - avatar
2nd Jan 2023, 1:40 AM
Benjamin A Keller
+ 1
I have a feeling the first if statement or the res = 0 initiative might not be necessary?
2nd Jan 2023, 5:18 AM
Benjamin A Keller
+ 1
Benjamin A Keller You're in the right direction. Now you just have to loop though all the words and adjust the output logic accordingly.
2nd Jan 2023, 4:34 PM
Emerson Prado
Emerson Prado - avatar
+ 1
Lothar may I use my own words still?
2nd Jan 2023, 5:11 PM
Benjamin A Keller
+ 1
Benjamin A Keller You should always use your own words. That's what makes you learn.
2nd Jan 2023, 5:17 PM
Emerson Prado
Emerson Prado - avatar
+ 1
Thank you - and i changed changed my string declaration to “decision”
2nd Jan 2023, 5:27 PM
Benjamin A Keller
+ 1
And its solved!
2nd Jan 2023, 5:28 PM
Benjamin A Keller
+ 1
I do have one question - why in the for loop this suggest for _(underscore) in range of(4)?
2nd Jan 2023, 5:39 PM
Benjamin A Keller
+ 1
Underscore is a variable which doesn't keep its value. Since you never need it, this saves memory. Even if it's just a little, it's always good to adopt good practices.
2nd Jan 2023, 6:02 PM
Emerson Prado
Emerson Prado - avatar
+ 1
Emerson is it possible to apply the same underscore variable technique to other programming languages or no? I am just curious - I’m familiar with quite a few and was wondering which techniques i could exchange across the board while dealing with syntax etc.
2nd Jan 2023, 6:57 PM
Benjamin A Keller
+ 1
Though you can always limit variables scope by using functions, methods and, depending on the language, code blocks. This way, they use memory, but get cleaned as soon as the function, etc., ends. As a last resort, you can erase them explicitly after use, like with Python's "del" function.
3rd Jan 2023, 2:16 AM
Emerson Prado
Emerson Prado - avatar
+ 1
Lothar Interesting. I can remember reading about the _ variable being discarded after the loop, but your sample code proves the opposite.
3rd Jan 2023, 7:20 PM
Emerson Prado
Emerson Prado - avatar
+ 1
Emerson Prado I understand.
2nd May 2023, 7:13 AM
Dragon RB
Dragon RB - avatar