0
Code is right the program gives me it's wrong
skills = {'Python', 'HTML', 'SQL', 'C++', 'Java', 'Scala'} job_skills = {'HTML', 'CSS', 'JS', 'C#', 'NodeJS'} print(skills & job_skills ) I can't continue learning because the program told me the code is wrong Any one can help
4 ответов
+ 5
khaleed
it is asking for the content, not the set.
destructure or unpack the union.
print(*(skills & job_skills))
+ 5
according to the task description, you are supposed to output the element, not a set.
Only output the element in the set, not the set.
+ 1
The result should be the match skill in every list
0
You are near at the solution but your code needs "list" and [0]