Page 1 of 1

In python I need help editing is_perfect_square so that the program can return true or false to the number that are perf

Posted: Thu Jul 14, 2022 2:13 pm
by answerhappygod
In python I need help editing is_perfect_square so that theprogram can return true or false to the number that are perfectsquare (true) or imperfect squares (false). Like shown below
>>> is_perfect_square(3364)
True>>> is_perfect_square(529)
True
>>> is_perfect_square(225)
True>>> is_perfect_square(16)
True
>>> is_perfect_square(26)
False>>> is_perfect_square(13)
False