python把整数变成小数
时间: 2023-11-10 09:26:28 浏览: 270
python中整除后结果也是小数.pdf
在Python中,您可以使用小数点 . 将整数转换为浮点数,例如:
```python
x = 5
y = float(x)
print(y)
```
这将输出 `5.0`,其中整数 `5` 已经被转换为浮点数 `5.0`。
另外,如果您直接使用带有小数点的数字,Python 将自动将其识别为浮点数,例如:
```python
x = 5.0
print(type(x))
```
这将输出 `<class 'float'>`,表明 `x` 是一个浮点数。
阅读全文