Hello! Notice how you’re returning a print()
function? That will actually return None
, as the function print()
doesn’t return anything (it merely prints to the console).
1 Like
Hello! Notice how you’re returning a print()
function? That will actually return None
, as the function print()
doesn’t return anything (it merely prints to the console).