728x90
반응형
개발하다보면, 대문자 / 소문자중 한가지로 표현이 필요한 경우가 있다.
이때 아래와 같은 함수를 통해서 변환 및 Check 해보도록 하자.
1. 대문자 변환 - upper() 함수
Python 2.7.10 (default, Feb 22 2019, 21:55:15) [GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = 'abcd' >>> print a.upper() ABCD >>> >>> b = 'aBcD' >>> print b.upper() ABCD
2. 소문자 변환 - lower() 함수
Python 2.7.10 (default, Feb 22 2019, 21:55:15) [GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = 'ABCD' >>> print a.lower() abcd >>> >>> b = 'aBcD' >>> print b.lower() abcd
3. 대문자 / 소문자 Check - isupper() 함수, islower() 함수
Python 2.7.10 (default, Feb 22 2019, 21:55:15) [GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = 'ABCD' >>> b = 'abcd' >>> c = 'aBCd' >>> >>> print a.isupper() True >>> print a.islower() False >>> >>> print b.isupper() False >>> print b.islower() True >>> >>> print c.isupper() False >>> print c.islower() False
위에 작성한 예제만 보면 큰 어려움없이 변환 혹은 Check를 할 수 있으니 유용하게 사용하도록 하자.
728x90
반응형
'+ Development > Python' 카테고리의 다른 글
[Python] 파이썬 Pandas(판다스) to_hdf 저장시 Column Size Error(컬럼사이즈 에러) 해결방안 (0) | 2020.04.21 |
---|---|
[Python] IF문을 이용한 List 데이터 확인하기 (1) | 2020.02.04 |
[Python] Python(파이썬) 현재 실행중인 PID 값 확인 (0) | 2020.01.07 |
[Python] pip를 통해 모듈(Module) 업데이트 (2) | 2019.09.24 |
[Python] pycrypto Module(모듈)을 이용한 암/복호화 하기 (0) | 2019.09.11 |
댓글