일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- tensorflow
- AWS
- Method
- Agile
- Project
- opencv
- algorithm
- Crawling
- python
- webcrawling
- 다나와
- data
- instance
- data analyze
- Scrum
- 프로젝트
- analyzing
- pandas
- 크롤링
- ECS
- 애자일
- matplotlib
- visualizing
- adaptive life cycle
- TypeScript
- keras
- 자바스크립트
- javascript
- DANAWA
- angular
Archives
- Today
- Total
목록str (1)
LiJell's 성장기
06.python_str_method
Modified on Dec 31 # -- coding: utf-8 -- """ Created on Thu Dec 16 15:32:15 2021 @author: hanju """ 문자열 메서드 문자열 처리와 관련된 메서드 1. 기본 메서드 : 벡터 연산 불가 (매 원소마다 반복 불가) 'abc'.upper() 'a/b/c'.split('/') 'a/b/c'.split('/')[1] l1=['abc', 'def'] l2=['a/b/c','d/e/f'] l1.upper() # 불가 l2.split() # 불가 map(lambda x: x.upper(),l1) # 맵 지정 list(map(lambda x: x.upper(),l1)) # 맵 지정된 것을 리스트화 # ['ABC', 'DEF'] list(map(l..
Bigdata/파이썬_Python
2021. 12. 20. 20:51