Write a python program for following tasks: 1. Finding duplicate files in a folder.2. Connecting to database ( SQL server) and | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Write a python program for following tasks: 1. Finding duplicate files in a folder.2. Connecting to database ( SQL server) and

Program in Python

14th Apr 2021, 3:46 PM
pooja shelage
pooja shelage - avatar
2 Answers
+ 7
pooja shelage , can you show us your attempt? please put your code in playground and link it here. thanjs!
14th Apr 2021, 4:40 PM
Lothar
Lothar - avatar
+ 2
a=list_of_filenames #files from folder a b=list_of_filenames #files from folder b print(set(a) & set(b))
14th Apr 2021, 4:01 PM
Steven M
Steven M - avatar