1
In python, I observed that these "indications" were placed in two cases, first in strings before passing through a hash algorithm, e.g.:
import hashlib
m = hashlib.sha256()
m.update(b"Nobody inspects")
Note: The indication I refer to is 'b' before "Nobody inspects"
And second before the strings go through the 'Match' :
plaintext = u'algor u00edtimo'
encodedtext = plaintext.Encode('utf-8')
Note: The indication this time is 'u' before 'algor u00edtimo'
I would like to know what they mean, because in python to use a print or something similar it is not necessary (at least as far as I know) to use these "indications", except in cases where the hashlib library will be used for example.