전체 글 썸네일형 리스트형 네 번째 실습 영상 강의 네 번째 실습 영상 강의 ▼ 유튜브에서 보기 https://youtu.be/UMSxJak9f30 더보기 세 번째 실습 코드 세 번째 실습 : 생성형 AI를 활용해 엑셀 파일의 데이터 합치기 1. 본문 165쪽 import pandas as pdaround = pd.read_excel("around.xlsx") cafe = pd.read_excel("cafe.xlsx") combined = pd.concat([around, cafe])combined['순번'] = range(1, len(combined) + 1)combined.to_excel("combined.xlsx", index=False) *코드 복사는 크롬 브라우저에서만 가능합니다. 크롬 외 브라우저(엣지, 웨일 등) 이용자는 아래 구글 드라이브 링크에서 복사 가능합니다. https://docs.google.com/document/d/1OlQWNiWLFtxOHhD.. 더보기 세 번째 실습 관련 질문 💡 질문 https://forms.gle/LcNZsazVQ17VZ4Jw6 💡 답변 https://chrome-doll-8f0.notion.site/_-dada4b1837434c189e37fe37ac55eb7a?pvs=4 더보기 세 번째 실습 영상 강의 세 번째 실습 영상 강의 ▼ 유튜브에서 보기 https://youtu.be/0LibQ3rwdSU 더보기 두 번째 실습 코드 두 번째 실습 : 다운로드 폴더에 있는 파일 중 설치파일만 옮기기 1. 본문 91쪽 import osimport shutilsource_dir = r"[다운로드 폴더의 주소]"dest_dir = r"[설치파일모음 폴더의 주소]"for file_name in os.listdir(source_dir): if file_name.endswith(".exe"): shutil.move(os.path.join(source_dir, file_name), dest_dir) *코드 복사는 크롬 브라우저에서만 가능합니다. 크롬 외 브라우저(엣지, 웨일 등) 이용자는 아래 구글 드라이브 링크에서 복사 가능합니다. https://docs.google.com/document/d/1vgOfwTyLPjHDFRM8.. 더보기 두 번째 실습 관련 질문 💡 질문 https://forms.gle/GLND9FZW3vKySf4a7 💡 답변 https://chrome-doll-8f0.notion.site/_-44ef0e86c2f54e4880c2c6b34a6edf1a?pvs=4 더보기 두 번째 실습 영상 강의 두 번째 실습 영상 강의 ▼ 유튜브에서 보기 https://youtu.be/gakA7J8fLsU 더보기 첫 번째 실습 코드 첫 번째 실습 : 엑셀 데이터 불러오기 1. 본문 79쪽 import pandas as pdpd.read_excel("around.xlsx") 2. 본문 83쪽 import pandas as pdprint(pd.read_excel("around.xlsx")) *코드 복사는 크롬 브라우저에서만 가능합니다. 크롬 외 브라우저(엣지, 웨일 등) 이용자는 아래 구글 드라이브 링크에서 복사 가능합니다. https://docs.google.com/document/d/1tFM-gwqcfDHtGeANn91gY5kFS_8fAs2ZO6CzJrTGu3c/edit?usp=sharing 더보기 이전 1 ··· 18 19 20 21 22 23 24 ··· 38 다음