怎么用python读取txt文件里的数字
时间: 2023-06-11 15:08:34 浏览: 197
python用loadtxt函数加载即有字符又有数字的文件
你可以使用Python内置的文件操作函数来读取txt文件中的数字。以下是读取txt文件中数字的示例代码:
```python
with open('file.txt', 'r') as f:
content = f.read()
numbers = []
for word in content.split():
try:
numbers.append(float(word))
except ValueError:
pass
print(numbers)
```
在这个例子中,我们打开名为“file.txt”的文件,使用`read()`方法读取文件内容,并使用`split()`方法将其拆分为单个单词。然后,我们尝试将每个单词转换为浮点数,如果可以转换,则将其添加到一个数字列表中。如果无法转换,则跳过该单词。最后,我们打印数字列表。
阅读全文