본문 바로가기
파이썬

파이썬의 문자열에 변수 값 삽입

by º기록 2020. 11. 13.
반응형

As는 파이썬의 문자열에 변수 [i]를 도입합니다.

예를 들어 다음 스크립트를 보면 이미지에 이름을 지정할 수 있습니다 (예 : geo [0]). Tiff ... 지역 [i]로. tiff 또는 회계사를 사용하는 경우 가치 사슬의 일부를 대체하여 카운터를 생성 할 수 있습니다.

    data = self.cmd("r.out.gdal in=rdata out=geo.tif")

    self.dataOutTIF.setValue("geo.tif")

답변 감사합니다

 

해결 방법

 

data = self.cmd("r.out.gdal in=rdata out=geo{0}.tif".format(i))
self.dataOutTIF.setValue("geo{0}.tif".format(i))
str.format(*args, **kwargs)

문자열 형식화 작업을 수행합니다. 이 문자열 method is called can contain literal text or replacement fields delimited by braces {}. Each replacement field contains either the numeric index of a positional argument, or the name of a keyword argument. Returns a copy of the string where each replacement field is replaced with the string 해당 인수의 값.

>>> "The sum of 1 + 2 is {0}".format(1+2)
'The sum of 1 + 2 is 3'

다양한 형식화에 대한 설명은 형식 문자열 구문을 참조하십시오. options that can be specified in 형식 문자열.

이 문자열 형식화 방법은 Python 3.0의 새로운 표준입니다. should be preferred to the % formatting described in String 새 코드에서 작업 서식 지정.

New in version 2.6.

 

참조 페이지 https://stackoverflow.com/questions/3367288

 

 

반응형

댓글