본문 바로가기
Python/Python

[Python_Bootcamp] f-String

by HJ0216 2023. 8. 8.

이 글은 Dr. Angela Yu의 [Python_Bootcamp]를 수강하며 정리한 글입니다.

 

👉 기본 환경

- Language: Python

- IDE: Replit

 

 

f-String

- 문자열 Formatting 기법

- 여러 자료형을 str과 함께 사용할 경우, TypeError 발생

- 여러 자료형을 str로 형변환 해주는 불편함을 줄임

 

1
2
3
4
5
height = input("enter your height in m: ")
weight = input("enter your weight in kg: ")
 
print(f"your height is {height}m and weight is {weight}");
 
 
 

- {}를 활용하여 변수 삽입, 함수 호출 등을 할 수 있음

 

 

 

📚 참고 자료

 

파이썬의 f-string으로 문자열 포맷팅하기

Engineering Blog by Dale Seo

www.daleseo.com

 

'Python > Python' 카테고리의 다른 글

[Python_Bootcamp] 리스트 랜덤 추출  (0) 2023.08.16
[Python_Bootcamp] Data Structures: List  (0) 2023.08.13