Python循环中的星号符号
- 论坛
- Python循环中的星号符号
11 浏览
Python循环中的星号符号
这个问题已有答案:
我正在使用CPython,我在一个示例文件中看到了一个星号符号。你可以解释一下在这种情况下*
符号的意思吗?这里的pointsets
是来自pybind11
的numpy数组
,因为它是C++代码的输出。
Point(* point)
与C++中的指针有关吗?
polylines = [] for points in pointsets: points = [Point(*point) for point in points] polyline = Polyline(points) polylines.append(polyline)
admin 更改状态以发布 2023年5月25日