Login
Remember
Register
Ask a Question
Which statement creates the bytes literal when run?
0
votes
asked
Jun 24, 2020
in
Python
by
Robindeniel
Which statement creates the bytes literal when run?
bytes_literal = bytes.encoded.count(0x54)
bytes_literal = b'Copyright \xc2\xa9'
bytes_literal = bytes.str.count(0x54)
bytes_literal = bytes(str_literal,'utf-8')
#python-statement
#statement-python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 25, 2020
by
SakshiSharma
bytes_literal = b'Copyright \xc2\xa9'
...