Simple question, but can't get to find the answer (maybe wrong google search term ?).
My Windows 10 temp directory is
C:\Users\Aurélien\AppData\Local\Temp
Notice my username: Aurélien
contains an é
which isn't standard ascii compatible. But hey that's my name.
When using Interactive Python 3.8 within VS 2019, I type this code:
import tempfile
print(tempfile.gettempdir())
and it results in:
C:\Users\AURLIE~1\AppData\Local\Temp
How to get the proper formatting answer?
Expected
C:\Users\Aurélien\AppData\Local\Temp
Thanks.