Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 분류 결과표
- Machine Learning
- 반복문
- elbow method
- len()
- Dictionary
- data
- del
- matplotlib
- hierarchical_clustering
- DataAccess
- DataFrame
- append()
- numpy
- pandas
- sklearn
- count()
- dendrogram
- Python
- wcss
- function
- insert()
- 덴드로그램
- analizer
- IN
- list
- 최댓값
- 최솟값
- nan
- string
Archives
- Today
- Total
목록title() (1)
개발공부
+연산자 - 숫자 뿐만 아니라 문자열에서도 사용이 가능하다. - 여러 문자열들을 결합할 수 있다. >>> first_name = 'Mitch' >>> last_name = 'Steve' >>> first_name + last_name 'MitchSteve' upper() - 문자열을 대문자로 변경한다. >>> full_name = 'Mitch Steve' >>> full_name.upper() 'MITCH STEVE' lower() - 문자열을 소문자로 변경한다. >>> full_name = 'Mitch Steve' >>> full_name.lower() 'mitch steve' title() - 문자열 안의 단어들의 첫 문자를 대문자로 변경한다. >>> full_name = 'mitch steve' >..
Python/Basic
2022. 4. 20. 17:23