Ruby의 문자열 보간과 동등한 Python
문자열 내에 표현식을 쉽게 포함할 수 있게 해주는 Ruby의 문자열 보간에는 Python과 동등한 기능이 있습니다.
형식 문자열 보간(f-strings)
Python 3.6 이상에서는 리터럴 문자열 보간을 가능하게 하는 "f-strings"를 도입했습니다. 표현식은 다음 구문을 사용하여 직접 삽입할 수 있습니다:
name = "Spongebob Squarepants" print(f"Who lives in a Pineapple under the sea? {name}.")
% 연산자를 사용한 문자열 보간
Python 3.6 이전에는 % 연산자를 사용하여 문자열 보간을 수행할 수 있습니다. . 첫 번째 피연산자는 보간할 문자열이고 두 번째 피연산자는 필드 이름을 값과 일치시키는 매핑일 수 있습니다. 예:
name = "Spongebob Squarepants" print("Who lives in a Pineapple under the sea? %(name)s." % locals())
.format() 메서드를 사용한 문자열 보간
최근 Python 버전에서는 문자열 보간을 위한 .format() 메서드도 제공합니다.
name = "Spongebob Squarepants" print("Who lives in a Pineapple under the sea? {name!s}.".format(**locals()))
String.Template 클래스
또 다른 옵션은 string.Template 클래스를 사용하는 것입니다.
tmpl = string.Template("Who lives in a Pineapple under the sea? $name.") print(tmpl.substitute(name="Spongebob Squarepants"))
위 내용은 Ruby처럼 Python에서 문자열 보간을 어떻게 수행할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!