반응형
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
- Google Excel
- Tkinter
- numpy
- google apps script
- gas
- Google Spreadsheet
- math
- Excel
- GIT
- array
- hive
- Redshift
- string
- Mac
- django
- 파이썬
- PANDAS
- PySpark
- Java
- Kotlin
- list
- c#
- SQL
- Apache
- PostgreSQL
- Python
- matplotlib
- dataframe
- Github
Archives
- Today
- Total
달나라 노트
Python Basic : lower, upper (소문자로 변경하기, 대문자로 변경하기) 본문
Python/Python Basic
Python Basic : lower, upper (소문자로 변경하기, 대문자로 변경하기)
CosmosProject 2021. 3. 27. 01:34728x90
반응형
print('AbCdEfG'.lower())
print('AbCdEfG'.upper())
-- Result
abcdefg
ABCDEFG
lower method는 텍스트에 적용하여 모든 알파벳을 소문자로 변경시킵니다.
upper method는 텍스트에 적용하여 모든 알파벳을 대문자로 변경시킵니다.
print('Ab1C2d3EfG'.lower())
print('Ab4Cd5Ef6G'.upper())
-- Result
ab1c2d3efg
AB4CD5EF6G
중간에 숫자가 있어도 숫자는 무시하고 알파벳만 대문자 또는 소문자로 바꿔줍니다.
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Python Basic : list clear, remove, pop, del (list속 요소 삭제하기) (0) | 2021.03.29 |
---|---|
Python Basic : sorted, sort (list의 요소 정렬하기) (0) | 2021.03.29 |
Python Basic : isnumeric (숫자로 변환될 수 있는 data인지 체크하기) (0) | 2021.03.18 |
Python Basic : open (file 읽기) (0) | 2021.02.08 |
Python Basic : map & filter 함수 (0) | 2021.01.24 |
Comments