标签: python windows environment-variables
我想在我的Windows系统上调用os.environ['UserProfile']。该值可能是unicode,但os.environ dict仅返回str类型,非ascii字符转换为问号。
os.environ['UserProfile']
os.environ
str
>>> os.environ['UserProfile'] 'C:\\Users\\????'
如何在Windows下获取UserProfile的正确路径?
UserProfile