I have a question and I would be very grateful if someone can answer it for me.
In some programming languages like Csharp or Python, strings can be converted to "byte arrays". I don't understand how this can be possible because internally for a computer everything is bytes, what we call strings or texts are just graphical representations for humans of the same bytes. So if everything is bytes for the computer, why is there the possibility of converting strings to "byte array" in python or csharp??? for the machine would this be the same as converting bytes to bytes?
Thank you in advance for the answers...