티스토리 뷰
🐍/Python
[Python] f-string (🖐 %-formatting / str.format / string.Template)
eungding 2021. 4. 9. 22:53728x90
반응형
파이썬은 string formatting을 다양한 방식으로 지원해왔습니다.
1) %-formatting
name = 'Fred'
age = 50
introduce = 'My name is %s, my age next year is %s' % (name, age+1)
print(introduce)
// 결과
My name is Fred, my age next year is 51
2) str.format
name = 'Fred'
age = 50
introduce = 'My name is {}, my age next year is {}'.format(name, age+1)
print(introduce)
// 결과
My name is Fred, my age next year is 51
import string
name = 'Fred'
age = 50
template = string.Template("My name is $name, my age next year is $age")
introduce = template.substitute(name=name, age=age+1)
print(introduce)
// 결과
My name is Fred, my age next year is 51
하지만 이 방법들은 실제로 사용할 때 cumbersome(거추장스러운) 합니다.
=> 와우 공식 문서에서 이렇게 솔직히 말하다니...!! 😖
그래서 파이썬 3.6부터 새로운 string formatting 을 제공합니다.
그것은 바로 Literal String Interpolation 이며 "f-strings" 으로 부릅니다.
PEP 498 - Literal String Interpolation
이제 f-string을 이용하여 이렇게 해주면 됩니다 (🥺)
name = 'Fred'
age = 50
introduce = f'My name is {name}, my age next year is {age+1}'
print(introduce)
// 결과
My name is Fred, my age next year is 51
반응형
'🐍 > Python' 카테고리의 다른 글
[Python] any function (0) | 2021.05.05 |
---|---|
[Python] defaultdict / Counter / OrderedDict (0) | 2021.04.13 |
[Python] List Comprehension / Dict Comprehension (0) | 2021.04.09 |
[Python] gitignore 만들고 github에 올리는 스크립트를 작성해보자 (0) | 2021.01.22 |
[Python] 구글 Geocoding API 사용해보기 (3) | 2020.12.21 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Flutter Clipboard
- Flutter Text Gradient
- Sketch 누끼
- ribs
- Python Type Hint
- flutter dynamic link
- SerializerMethodField
- Watch App for iOS App vs Watch App
- Dart Factory
- Django Firebase Cloud Messaging
- github actions
- Django Heroku Scheduler
- flutter deep link
- 구글 Geocoding API
- 장고 Custom Management Command
- Flutter getter setter
- flutter 앱 출시
- 플러터 얼럿
- 장고 URL querystring
- Flutter Spacer
- DRF APIException
- ipad multitasking
- METAL
- drf custom error
- Flutter 로딩
- PencilKit
- cocoapod
- Django FCM
- flutter build mode
- 플러터 싱글톤
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함