0 votes
in Python by
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')

1 Answer

0 votes
by
gdgdgd

Related questions

+1 vote
asked Jul 16, 2020 in Python by GeorgeBell
+1 vote
asked Jul 16, 2020 in Python by GeorgeBell
...