(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 (0, 0, 0, 0, 0)
B. bytes(5)
C. bytes([0]*5)
D. bytes('\x00\x00\x00\x00\x00', 'utf-8')
Q: 22