The username of my computer is ghbjnk. Wherever I saved my Pyscript and ran it, I always get C:\Users\ghbjnk rather than the current working directory, why? I'm using VScode and Python3.0 The weird thing is, if I debug the script Here is my Pyscript:
def main():
import os
print(os.path.abspath('.'))
if __name__ == "__main__":
main()