I've created a pickle file through a python file:
with open("pets.pickle", "wb") as file:
pickle.dump(animal, file)
And then wanted to open it in Visual Studio Code, but I got this message: "The file is not displayed in the editor because it is either binary or uses an unsupported text encoding."
I was able to open it in Sublime Text though, and actually see the 0s and 1s, but I prefer to work with VS Code. How can I make VS Code recognize a pickle file?
Thanks.