0
I've been facing a problem while executing a code in python developer course which is set task. I need an instant help!
Bug report
6 Réponses
+ 2
Already many people ask this question, please use search bar in discussion forum
https://www.sololearn.com/Discuss/3243737/?ref=app
https://www.sololearn.com/Discuss/3240724/?ref=app
https://www.sololearn.com/Discuss/2804565/?ref=app
https://www.sololearn.com/Discuss/2790577/?ref=app
+ 1
email to info@sololearn.com
+ 1
Sets
You are working on a recruitment platform, which should match the available jobs and the candidates based on their skills. The skills required for the job, and the candidate's skills are stored in sets. Complete the program to output the matched skill.
You can use the intersect operator to get the values present in both sets.
skills = {'Python', 'HTML', 'SQL', 'C++', 'Java', 'Scala'}
job_skills = {'HTML' ,'CSS', 'JS', 'C#', 'NodeJS','Scala'}
print(skills & job_skills )
+ 1
skills.intersection(job_skills)
0
I did it. But they told to ask from you guys!
0
Send your code and the task description