In the Intro to functions course , on the white spaces exercise it says “Remove the indent on the second print statement. Run the file. Now what’s printed?”. I think that should be Unindent the second print statement. Unless I am wrong, doesn’t indenting incorrectly null out the function eaither way.
def about_this_computer():
print(“This computer is running on Whackintosh version Everest Puma”)
print(“This is your desktop”) < no spaces will not print
print(“This is your desktop”) < reduced by one space will not print, technically I removed an indent right?
about_this_computer()