📅  最后修改于: 2022-03-11 14:46:48.592000             🧑  作者: Mango
You will not do bytes("bla bla") but just b"blabla" or you need to specify an encoding type like bytes("bla bla","utf-8") because it needs to know what was the original encoding before turning it into an array of numbers.