Pythonに整数型クラス変数を返す

2018/04/22

Cython[test.pyx]

cdef class Test:
    cdef public int no

    def __cinit__(self):
        self.no = 5

Python

import test

t = test.Test()
print(t.no)

t.no = 10
print(t.no)

publicをつけるとPython側から見れるし、操作もできる