Quiz Catalog

Catalog of quizzes

a = 'a'.encode()
b = b'a'

print(a == b)
True
  • byte/literal
  • string/operation/encode

a = '1'.encode()
b = (1).encode()

print(a == b)
AttributeError: 'int' object has no attribute 'encode'
  • string/operation/encode

a = '1'.encode()
b = (1).encode()

print(a == b)
AttributeError: 'int' object has no attribute 'encode'
  • string/operation/encode