I think the author probably meant:
if Verbose:
print("Building internam Index for %d tile(s) ..." % len(inputTiles), end=' ')
He's missing an initial quote after print(
.
Note that as of Python 3.0, print
is a function as opposed to a statement, if you're using older versions of Python the equivalent would be:
print "Building internam Index for %d tile(s) ..." % len(inputTiles)
The end
parameter means that the line gets ' '
at the end rather than a newline character. The equivalent in earlier versions of Python is:
print "Building internam Index for %d tile(s) ..." % len(inputTiles),
(thanks Ignacio).