Python 배우기 #4 - f-string...
f-string
를 통한 문자열 조작에 대해 이야기하겠습니다.수년 동안 Python은 많은 기능을 제공했으며 그 중 하나는 문자열 형식을 지정하는 것입니다.
f-스트링은 무엇에 관한 것입니까?
f-strings는 리터럴 문자열 보간( The way it works in JavaScript -> String literals )입니다.
파이썬 표현식을 쉽게 임베드할 수 있는 편리한 방법을 제공합니다.
예를 살펴보겠습니다.
employee_name = 'Steve Rogers'
에서 수신되는 문자열의 형식을 지정하고 문자열Steve Rogers is one of the greatest Marvel superheroes
을 생성해야 하는 경우 ->f"{employee_name} is one of the greatest Marvel superheroes"
// Steve Rogers is one of the greatest Marvel superheroes
quantity_bat = 10
price_bat = 10
f"The total cost of {price_bat} bats is ${quantity_bat*price_bat}"
//The total cost of {price_bat} bats is 100
quantity_bat = 10.99
price_bat = 10.234
f"The total cost of {price_bat} bats is ${quantity_bat*price_bat:,.2f}"
//output -> 'The total cost of 10.234 bats is $112.47'
위의 예에서 숫자를 표시할 소수점까지 결정할 수 있습니다.
number_one = 1
f"\"{number_one}\" is a odd number"
// 1 is a odd number
결론
f-문자열은 문자열 보간과 관련하여 이해하기 쉽고 사용하기 쉽고 편리하므로 이 기사에 대한 여러분의 생각을 알려주세요💡.
이 글을 읽어주셔서 미리 감사드립니다...🚀
에서 귀하와 연결하게 되어 기쁩니다.
당신은 또한 나를 찾을 수 있습니다
Reference
이 문제에 관하여(Python 배우기 #4 - f-string...), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nitinreddy3/learn-python-4-the-f-string-m6n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)