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
'파이썬' 카테고리의 다른 글
파이썬 목록에서 처음 N 개 요소를 제거하는 가장 효율적인 방법은 무엇입니까? (0) | 2020.11.13 |
---|---|
파이썬을 사용하여 목록을 문자열로 변환 (0) | 2020.11.13 |
파이썬 Windows에서 Anaconda Python 2.7 x64에 Theano를 설치하는 방법은 무엇입니까? (0) | 2020.11.13 |
파이썬 How do I track motion using OpenCV in Python? (0) | 2020.11.13 |
파이썬 계속하기 전에 모든 다중 처리 작업이 완료 될 때까지 기다리십시오. (0) | 2020.11.13 |
댓글