我已经安装了python 2.7并尝试运行下面的代码总是会出错:
# !/usr/bin/python
import os, sys
stinfo = os.statvfs("C:\Tools")
错误来自:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'statvfs'
任何使其有效的线索?
答案 0 :(得分:5)
答案 1 :(得分:0)
确保您在python2.7中运行
import sys
print(sys.version)
你也应该逃避反斜杠
编辑:看到Mikes的回答,不知道这是不是针对Windows实现的。使用它也是不明智的,因为它自Python2.6以来已被弃用,并已在Python3中删除