일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- adaptive life cycle
- visualizing
- Method
- opencv
- tensorflow
- python
- Scrum
- 애자일
- AWS
- data analyze
- 크롤링
- Project
- Crawling
- angular
- 프로젝트
- 자바스크립트
- data
- webcrawling
- ECS
- javascript
- matplotlib
- keras
- Agile
- 다나와
- instance
- DANAWA
- TypeScript
- analyzing
- algorithm
- pandas
Archives
- Today
- Total
목록string (1)
LiJell's 성장기
08.python_pandas_string_method
Modified on Jan 02 2022 # -- coding: utf-8 -- """ Created on Mon Dec 20 15:18:23 2021 @author: hanju """ 판다스_문자열 메소드 기본 메소드 : 벡터 연산 불가능 (매 원소마다 반복 불가) 'abc'.upper() # 'ABC' 'a/b/c'.split('/')[1] l1 = ['abc','def'] l2 = ['a/b/c','d/e/f'] l1.upper() # 안됨 ㅠ l2.upper() # 따라서 맵 활용 list(map(lambda x: x.upper(), l1)) # ['ABC', 'DEF'] list(map(lambda x: x.split('/'), l2)) # [['a', 'b', 'c'], ['d', 'e', ..
Bigdata/파이썬_Python
2022. 1. 2. 21:53