Ad
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