-
[Python] comparing a file and b file (파일 비교 하기)Python/Python Programming 2019. 10. 10. 12:55
filecmp.cmp : a파일과 b파일을 비교하여, 같으면 True, 다르면 False를 반환
samplefile_1.txt samplefile_2.txt 1 파이썬
2 python
3 iz
4 beautiful1 파이선
2 python
3 is
4 beautiful
5
6 difftext file
from filecmp import cmp print(cmp('samplefile_1.txt','samplefile_1.txt')) --------------------------------------------------- True print(cmp('samplefile_1.txt','samplefile_2.txt')) --------------------------------------------------- False
image file
from filecmp import cmp print(cmp('sampleimage_1.jpg','sampleimage_1.jpg')) ----------------------------------------------------- True print(cmp('sampleimage_1.jpg','sampleimage_2.jpg')) ----------------------------------------------------- False
'Python > Python Programming' 카테고리의 다른 글
[Python] 리스트나 튜플의 모든 요소들을 참, 거짓 확인하는 내장함수 (0) 2019.10.11 [Python] isalpha 문자열에 문자만 있는지 확인하는 메소드 (0) 2019.10.11 [Python] multiplication table (파이썬 구구단) (0) 2019.10.10 [Python] multiplication table using itertools module. (itertools을 이용한 구구단) (0) 2019.10.10 [Python] Difference between readline and readlines. (readline과 readlines의 차이) (0) 2019.10.08 [Python] iglob메소드와 재귀를 이용한 모든 하위 디렉토리 특정 확장자 파일 검색 (0) 2019.10.06 [Python] 리스트 append 메소드와 insert 메소드 (0) 2019.10.02 [Python] 리스트의 값을 여러 변수에 다중할당 (0) 2019.10.02