[Python] String

2020. 9. 1. 17:29

Python string → immutable;

indexing으로 문자 못바꿈

 

 


문자 -> ASCII 값 : ord

ASCII 값 -> 문자 : chr

https://lsjsj92.tistory.com/201


Concat

 

 


Formatting

 

%-formatting (obsolete? https://stackoverflow.com/questions/1455602/printing-tuple-with-string-formatting-in-python) 말고, str.format() 사용하자.

 

Update - 더더 나은 f-string을 쓰자!

https://velog.io/@ceres/Python-%EB%AC%B8%EC%9E%90%EC%97%B4-%ED%8F%AC%EB%A7%B7%ED%8C%85-String-Formatting

 

Python: 문자열 포맷팅 (String Formatting)

formatting 이란 문자열을 더 잘 표현하기 위한 방법이다. 1. %-formatting % 연산자 사용하는 경우이다. 문자열에 숫자, 문자열을 대입할 수 있고, %d %f %s 등이 사용된다. 언어 초반에 사용되었으며, c언�

velog.io

Python_ 문자열 포맷팅 (String Formatting).mhtml
0.23MB

 

https://docs.python.org/3/library/string.html#formatstrings

 

string — Common string operations — Python 3.8.5 documentation

string — Common string operations Source code: Lib/string.py String constants The constants defined in this module are: string.ascii_letters The concatenation of the ascii_lowercase and ascii_uppercase constants described below. This value is not locale-

docs.python.org

 

+ Recent posts