1

Xcode IDE で Python で記述されたヒルベルト曲線を試しています。コード リストは次のとおりです。

#  python code to run the hilbert curve pattern
#  from  http://www.fundza.com/algorithmic/space_filling/hilbert/basics/index.html
import sys, math

def hilbert(x0, y0, xi, xj, yi, yj, n):
    if n <= 0:
        X = x0 + (xi + yi)/2
        Y = y0 + (xj + yj)/2

        # Output the coordinates of the cv
        print '%s %s 0' % (X, Y)
    else:
        hilbert(x0,               y0,               yi/2, yj/2, xi/2, xj/2, n - 1)
        hilbert(x0 + xi/2,        y0 + xj/2,        xi/2, xj/2, yi/2, yj/2, n - 1)
        hilbert(x0 + xi/2 + yi/2, y0 + xj/2 + yj/2, xi/2, xj/2, yi/2, yj/2, n - 1)
        hilbert(x0 + xi/2 + yi,   y0 + xj/2 + yj,  -yi/2,-yj/2,-xi/2,-xj/2, n - 1)

def main():
    args = sys.stdin.readline()
    # Remain the loop until the renderer releases the helper...
    while args:
        arg = args.split()
        # Get the inputs
        pixels = float(arg[0])
        ctype = arg[1]
        reps = int(arg[2])
        width = float(arg[3])

        # Calculate the number of curve cv's
        cvs = int(math.pow(4, reps))

        # Begin the RenderMan curve statement
        print 'Basis \"b-spline\" 1 \"b-spline\" 1'
        print 'Curves \"%s\" [%s] \"nonperiodic\" \"P\" [' % (ctype, cvs)

        # Create the curve
        hilbert(0.0, 0.0, 1.0, 0.0, 0.0, 1.0, reps)

        # End the curve statement
        print '] \"constantwidth\" [%s]' % width

        # Tell the renderer we have finished
        sys.stdout.write('\377')
        sys.stdout.flush()

        # read the next set of inputs
        args = sys.stdin.readline()
if __name__ == "__main__":
    main()

Xcode から次のエラーが表示されます: File "/Users/248239j/Desktop/hilbert/hilbertexe.py", line 12 print '%s %s' % (X, Y) ^ SyntaxError: 無効な構文

そのコード行に代わるものはありますか。前もって感謝します。今日からpythonを使い始めました。

4

2 に答える 2

2

print、python 3では関数です-引数を括弧で囲む必要があります:

print ('%s %s' % X, Y)
于 2016-02-06T09:52:40.773 に答える