What is the meaning of angle brackets in Python?

后端 未结 2 1774
一生所求
一生所求 2021-02-14 19:33

I found the following lines in the scikit-learn package:

if is_sparse:
    problem = csr_set_problem(
            (

        
2条回答
  •  囚心锁ツ
    2021-02-14 20:02

    Take a look at Cython documentation, about types.

    Additionally you could note that the file extension is .pyx and on the top of the file there are cimport statements.

提交回复
热议问题