일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 지도학습
- 비지도학습
- 은행채용
- 주피터노트북
- 군집분석
- 일반상식
- 금융상식
- 데이터분석
- 은행
- 파이썬
- 사전학습
- 머신러닝
- Jupyter Notebook
- IT
- Python
- 금융권
- 디지털
- 디지털용어
- dacrew
- 알고리즘
- 직무역량평가
- 파이썬문법
- 데이크루
- 과대완전
- 과소완전
- 데이콘
- 금융
- IT용어
- 디지털직무
- jupyternotebook
- Today
- Total
반응형
목록원소제거 (2)
Ming's blog
1. 파일 다루기 1) 파일 열기/닫기 file = open('data.txt') #열기 content = file.read() #읽기 file.close() #닫기 2) 파일 자동으로 닫기 with open('data.txt') as file: content=file.read() # 자동으로 닫힘 print(content) >>> Hello My name is Min 3) 줄 단위로 읽기 contents=[] with open('data.txt') as file: for line in file: contents.append(line.strip()) #앞 뒤 공백 제거 print(contents) >>>['Hello', 'My name is Min'] 4) 파일의 모드 # 쓰기 모드로 파일 열기 with..
1. 리스트 활용 (1) list.append(d) - 자료 d를 list의 마지막 원소 뒤에 추가 - 한 개의 자료만 추가 가능! rainbow = ['red', 'orange', 'yellow'] rainbow.append('green') print(rainbow) >>> ['red', 'orange', 'yellow', 'green'] (2) list.insert(i, d) - 인덱스 i에 자료 d를 삽입 num = [1, 2, 3, 5, 6, 7] num.insert(3, 4) #index 3에 자료 '4'추가 print(num) >>> [1, 2, 3, 4, 5, 6, 7] (3) list.remove(d) - 인덱스 0부터 조회하여 처음 나오는 자료 d를 제거 data = [3, 5, 3, 1..