Notice
Recent Posts
Recent Comments
Link
250x250
목록str 메서드 (1)
develope_kkyu
[Python] str 메서드
str 메서드¶ 파이썬 함수 (=Methods) 사용법 익히기 관련 문서 확인하기 https://docs.python.org/3/library/stdtypes.html#string-methods 항목 추가 항목 추가 In [46]: # Capitalize text = 'i love YOU' # str 클래스 객체 print(type(text)) result = text.capitalize() # 첫 글자 대문자 만들어주는 메서드 result = text.capital() # 에러 : 관련된 함수가 없다. print(result) --------------------------------------------------------------------------- AttributeError ..
Python
2022. 12. 26. 16:51