본문 바로가기

Python16

Chapter 4. Datatype Chapter 4. Datatype 1. Datatype ⦁ 자료형은 각각의 클래스를 가지고 있음 ⦁ 파이썬은 자료형을 선언하지 않아도 자동으로 구분하여 사용함 2. Example a. datatype a = 10 print(type(a)) b = 10.5 print(type(b)) c = 'abcd' print(type(c)) d = True print(type(d)) //결과////////////////// 2023. 2. 3.
Chapter 3. Jupyter notebook 설정 Chapter 3. Jupyter notebook 설정 1. Jupyter notebook 연결 파일 생성 ⦁ 명령프롬프터를 키고 명령어를 계속 입력하여 실행시키기 귀찮기 때문에 연결 파일을 만듬 ⦁ txt파일 생성 후 내용에 jupyter notebook을 작성 후 저장하고 확장자를 bat로 변경 ⦁ 파일 이름 작성시 jupyter 작성 X 2. Jupyter notebook 테마 설정 ⦁ jupyter notebook은 테마를 변경 가능하며 테마를 설치해야 함 # jupyter notebook 테마 설치 pip install jupyterthemes # jupyter notebook 테마 최신버전 설치 pip install --upgrade jupyterthemes ⦁ 지원하는 테마 종류 - oned.. 2023. 2. 2.
Chapter 2. Jupyter notebook 설치 Chapter 1. Jupyter notebook 설치 1. Jupyter notebook 설치 ⦁ 구글에서 jupyter notebook 검색 후 홈페이지 접속하여 install 클릭 2. Jupyter notebook 실행 ⦁ jupyter notebook을 입력하여 실행 ⦁ 실행 후 열린 웹브라우저에 나오는 영역은 C:\Users\이종현의 폴더와 같음 2023. 1. 31.
Chapter 1. Python 설치 Chapter 1. Python 설치 1. Python 설치 ⦁ 구글에서 python 검색 후 홈페이지 접속 후 다운로드 ⦁ 설치 파일 실행 2023. 1. 31.