본문 바로가기

책 소개/비전공자를 위한 이해할 수 있는 파이썬

QR 코드 모음

반응형

<비전공자를 위한 이해할 수 있는 파이썬> 각 챕터별 QR 코드 모음입니다.

아래 링크를 클릭해 간편하게 확인해보세요! 

 

 

▶ 2장

 

2장 코드

2장 실행 결과 해석하기 & 터미널에 결과를 보여주는 명령어, print  1. 본문 41쪽 #곱하기 실습 result 3*1 2. 본문 42쪽 #곱하기 실습 result 3*1print(result)

twigtwig.tistory.com

 

▶ 6장

 

6장 코드

6장 함수를 만드는 방법  1. 본문 133쪽 def avg_of_three(a, b, c): total = (a+b+c)/3 return total avg_of_three(10, 20, 30)avg_of_three(12, 24, 30)avg_of_three(100, 200, 300)  2. 본문 134쪽 def avg_of_three(a, b, c): total = (a+b+c)/3 retu

twigtwig.tistory.com

 

▶ 8장

 

8장 코드

●  8장 조건문의 이해  1. 본문 174쪽 weather = "비"if weather == "비": print("비가 많이 옵니다.") print("우산을 챙겨 나가세요.") 2. 본문 176쪽 weather = "맑음"if weather == "비": print("비가 많이 옵니다.") p

twigtwig.tistory.com

 

▶ 9장 

 

9장 코드

● 9장 리스트란 무엇일까?  1. 본문 187쪽 cafe_menu = ["아메리카노", "카페라테", "녹차"] print(cafe_menu[0]) 2. 본문 188쪽 (1) cafe_menu = ["아메리카노", "카페라테", "녹차"] cafe_menu.append("아이스크림") prin

twigtwig.tistory.com

 

▶ 10장

 

10장 코드

10장 키와 값을 저장하는 딕셔너리  1. 본문 219쪽 print(0.1 + 0.2) 2. 본문 220쪽 user = {"id: "wychoi", "pw": "1234"}user["id"]user["pw"] 3. 본문 221쪽 user = {"id: "wychoi", "pw": "1234"}print(user["id"])print(user["pw"]) 4.

twigtwig.tistory.com

 

▶ 첫 번째 실습 

 

첫 번째 실습 코드

첫 번째 실습 : 엑셀 데이터 불러오기  1. 본문 79쪽 import pandas as pdpd.read_excel("around.xlsx") 2. 본문 83쪽 import pandas as pdprint(pd.read_excel("around.xlsx"))

twigtwig.tistory.com

 

▶ 두 번째 실습 

 

두 번째 실습 코드

두 번째 실습 : 다운로드 폴더에 있는 파일 중 설치파일만 옮기기  1. 본문 91쪽 import osimport shutilsource_dir = r"[다운로드 폴더의 주소]"dest_dir = r"[설치파일모음 폴더의 주소]"for file_name in os.listdir(s

twigtwig.tistory.com

 

▶ 세 번째 실습 

 

세 번째 실습 코드

세 번째 실습 : 생성형 AI를 활용해 엑셀 파일의 데이터 합치기  1. 본문 165쪽 import pandas as pdaround = pd.read_excel("around.xlsx") cafe = pd.read_excel("cafe.xlsx") combined = pd.concat([around, cafe])combined['순번'] = rang

twigtwig.tistory.com

 

▶ 네 번째 실습 

 

네 번째 실습 코드

● 네 번째 실습 : 생성형 AI를 활용해 스크린샷 코드 만들기  1. 본문 235쪽 import pyautoguiscreenshot = pyautogui.screenshot()screenshot.save('screenshot.png')  ● 네 번째 실습 : 5초 간격으로 스크린샷 찍고 지

twigtwig.tistory.com

 

반응형