Numbers
Data Types
Fundamentals
Write a function perfect(numbers)
which will be given a list of numbers, of which at least one is a square. Your job is to output a list which will only return the square numbers from that list. Good luck!
def perfect(numbers):
#Code goes here. Good Luck!
return perfected_numbers
test.assert_equals(perfect([2,4,8,16,25]), [4, 16, 25])