Quiz Catalog

Catalog of quizzes

import math

x = math.pow(2, 3)
y = pow(2, 3)

print(type(x) == type(y))
False
  • type/compare