Feb-20-2021, 04:56 AM
What is the required result of the test? Is it just supposed to print information to stdout? In any particular format? Can you get the first test to pass as well as the second?
If you wanted to return a string, then something like
If you wanted to return a string, then something like
return ",".join(sq1area,sq2area,sq3area,sq4area)Or a tuple
return sq1area,sq2area,sq3area,sq4areaBut if test2 is passing, the return value doesn't seem to be necessary.