I've been facing a problem while executing a code in python developer course which is set task. I need an instant help! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

6th Oct 2023, 4:44 PM
Noorul Ameen
Noorul Ameen - avatar
6 Answers
+ 1
email to info@sololearn.com
6th Oct 2023, 4:51 PM
MATOVU CALEB
MATOVU CALEB - avatar
+ 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 )
6th Oct 2023, 5:39 PM
Noorul Ameen
Noorul Ameen - avatar
+ 1
skills.intersection(job_skills)
6th Oct 2023, 5:46 PM
MATOVU CALEB
MATOVU CALEB - avatar
0
I did it. But they told to ask from you guys!
6th Oct 2023, 4:55 PM
Noorul Ameen
Noorul Ameen - avatar
0
Send your code and the task description
6th Oct 2023, 4:56 PM
MATOVU CALEB
MATOVU CALEB - avatar