1# test builtin pow() with integral values 2# 2 arg version 3 4print(pow(0, 1)) 5print(pow(1, 0)) 6print(pow(-2, 3)) 7print(pow(3, 8)) 8