What does the \’b\’ character do in front of a string literal in python
By: BHUVANESHWARI In python , the ‘b’ character before a string is used to specify the string as a “byte string”. By adding the ‘b’ character before a string literal, it becomes a bytes literal. The string content should be a series of bytes and not character. Bytes literals are utilized for representing binary data …
What does the \’b\’ character do in front of a string literal in python Read More »