문자열 포메팅에는 다음 2가지 방식이 존재한다.
- format
- f-string
'Hello {0}'.format('startcoding')
'Hello startcoding'
# 값을 여러 개 넣는 방법
'Hello {0}{1}{2}'.format('apple','pineapple','pen')
'Hello apple pineapple pen'
# 인덱스 생략 방법
'Hello {}{}{}'.format('apple','pineapple','pen')
'Hello apple pineapple pen'
[Python] 리스트 내포(Comprehension) (0) | 2022.06.08 |
---|---|
[Python] 리스트 메서드 (0) | 2022.06.08 |
[Python] 문자열 다루기 (0) | 2022.06.06 |
[Python] 소수점 관리하기 (0) | 2022.06.04 |
[Python] 패키지 (0) | 2022.06.04 |