+ 1
Why is Syntex Error? Task 66.3 filfer SOLVED
The below is the solution to the task 66.3 The system gives SyntexError for the last line with print function. What is wrong with this line code? There was the same problem with other code for this very task (where list comprehension was used for the solution) But, after several attempts the system finally accepted. But the below one it doesn't 😭 names = ["David", "John", "Annabelle", "Johnathan", "Veronica"] # место для вашего кода names_5 = list(filter(lambda x: len(x) > 5, names) print(names_5)
29 Respostas
+ 5
You forgot closing the list
names = ["David", "John", "Annabelle", "Johnathan", "Veronica"]
names_5 = list(filter(lambda x: len(x) > 5, names))
print(names_5)
+ 4
You are missing a closing parenthesis ')' in the line
`names_5 = list(filter(lambda x: len(x) > 5, names)`
There are 2 opening parentheses '(' but only 1 closing parenthesis.
+ 1
XXX thank you very much, you are right, the missing closing parenthesis was the problem.
+ 1
Be patient
“Any software engineer will likely give a new coder the same advice: be patient. Coding, while great, is one of the most frustrating things to learn. You’ll spend three hours staring at your code, wondering why it’s not working, only to be missing a semicolon somewhere. But when you finally get it working, it’s worth it.”– Jake Byman, Senior Software Engineer
+ 1
Yaroslav Vernigora well, patience is not really my thing but i will do my best to get.
+ 1
Yaroslav Vernigora by the way don't you know by chance where our posts with references usually go. The matter is i post a reference some times and it seems to have been posted but i have never found any of them.
+ 1
Yaroslav Vernigora well, it might be llogics
+ 1
Yaroslav Vernigora it is usually YouTube video with python lessons
+ 1
Yaroslav Vernigora А почему комната с низким потолком? И я нашла свои ссылки в своей активности. и ответ - может включить средний выключатель и первый?
+ 1
Yaroslav Vernigora а что выключатели на потолке? какой ответ?
+ 1
Yaroslav Vernigora поняла, нужно включить два выключателя и подождать, пока лампочки нагреются (записать какие выключатели включил на ВС) Потом выключить один. И потом пойти посмотреть какая лампочка горит - это включатель включенный, потрогать и найти которая горячая - это выключатель, только что выключили и третья лампа будет от выключателя который не трогали
УФ долго объяснять
+ 1
Yaroslav Vernigora а ёмкость большая есть? если да, наливает туда два по 5 и забираем от туда два по 3
+ 1
Yaroslav Vernigora Один раз отмерить или много раз отмерять? Если много, то отмерять по 8 (3+5) если нет, то не знаю
+ 1
Yaroslav Vernigora поняла, надо из из 5 забрать 3 ведра и все повторить
+ 1
Yaroslav Vernigora Вначале было просто любопытно, в чем проблема решения задач. Поэтому - Питон , он не требует технических знаний(так мне сказали). Сейчас мне нравиться сам процесс, сама среда ИТ, меня это затягивает. Питон тоже очень нравиться. Любопытство - вход рубль, а выход два. Но, собеседование в Майкрософт я похоже не прошла ..
+ 1
Yaroslav Vernigora 👍👍👍 супер
0
Okay, I get you. what are your strengths?
0
what links? tell us more about it. or give an example. what do you mean?
0
I don't see any problems, I opened a couple of your links at random and they work fine
0
let's check your logic... how would you solve this problem?
Условие:
В первой закрытой комнате с низким потолком висит 3 лампы накаливания. В другой такой же комнате установлено 3 переключателя от каждой из них. Можно как угодно дергать переключатели, вот только перейти из 2-ой комнаты в 1-ую разрешено только 1 раз. Как узнать, за какую лампочку отвечает каждый из переключателей?