Question in Python Programming
Write a function named compute_Pythagoreans that takes one positive int argument n and returns a list with tuples (a,b,c), with
02+b2=c2
The function MUST use one list comprehension and no loops, or no credit is given for the solution.
The function should also use proper error checking and return an empty list if the input parameter is invalid.