Login
Remember
Register
Ask a Question
Which statement creates the bytes literal when run?
0
votes
asked
May 17, 2019
in
Python
by
Derya
Which statement creates the bytes literal when run?
a)bytes_literal = bytes.encoded.count(0x54)
b)bytes_literal = bytes.str.count(0x54)
c)bytes_literal = b'Copyright \xc2\xa9'
d)bytes_literal = bytes(str_literal,'utf-8')
#python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 22, 2019
by
anonymous
gdgdgd
...