我想调用os.environ['UserProfile']
我的windows系统。该值可能是 unicode,但os.environ
dictstr
仅返回类型,非 ascii 字符转换为问号。
>>> os.environ['UserProfile']
'C:\\Users\\????'
如何UserProfile
在Windows下获得正确的路径?
- 我正在使用 Python 2.7.3
- 我正在使用 Windows 7,但解决方案必须也适用于 XP、Vista 和 8。
我想调用os.environ['UserProfile']
我的windows系统。该值可能是 unicode,但os.environ
dictstr
仅返回类型,非 ascii 字符转换为问号。
>>> os.environ['UserProfile']
'C:\\Users\\????'
如何UserProfile
在Windows下获得正确的路径?