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
    


  • 소수점 2자리 제한으로 값을 표시하려는 경우

  • 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-문자열은 문자열 보간과 관련하여 이해하기 쉽고 사용하기 쉽고 편리하므로 이 기사에 대한 여러분의 생각을 알려주세요💡.

    이 글을 읽어주셔서 미리 감사드립니다...🚀

    에서 귀하와 연결하게 되어 기쁩니다.



  • 당신은 또한 나를 찾을 수 있습니다
  • @Github

  • @Medium
  • 좋은 웹페이지 즐겨찾기