News

If you want to print in Python and you want to include a new line, a good way to do that is to use the character “\n” as part of your string. Another option is to follow your print statement ...
print 'Area = ', getArea(2,4), 'feet' Note: We wrap the function in a print statement so the user will know what the number printed to the console means. Similarly, we could define variables which ...