python 如何将double转为scalar type float
时间: 2023-02-17 20:08:44 浏览: 130
OpenCV-Python中的标量Scalar是什么.rar
在 python 中, 可以使用 float() 函数将 double 转换为 scalar type float。
例如:
```
x = 2.5
y = float(x)
print(y)
```
输出: 2.5
或者
```
x = 2.5
y = x * 1.0
print(y)
```
输出: 2.5
这两种方法都可以实现将double转为scalar type float的操作。
阅读全文