Multiple Choices
(Choose 1 answer)
You want to create a bytes object consisting of five null (0x00) bytes. All of the following will work except one.Select the one that doesn't work:
A. bytes (5)
B. bytes (0, 0, 0, 0, 0)
C. bytes("\x00\x00\x00\x00\x00', 'utf-8')
D. bytes([0] * 5)