행(로우), 열(컬럼) 생략없이 출력하기# row 생략 없이 출력pd.set_option('display.max_rows', None) # 모두 출력pd.set_option('display.max_rows', 10) # 10개만 출력# col 생략 없이 출력pd.set_option('display.max_columns', None) # 모두 출력pd.set_option('display.max_columns', 10) # 10개만 출력 데이터 값(셀) 생략없이 출력하기pd.set_option('display.max_colwidth', None) # 모두 출력pd.set_option('display.max_colwidth', 50) # 문자열의 길이가 50일때 자른다pandas를 사용할 때 데..