News

defgreet(): print ('Hello World!') The "def" keyword tells the Python compiler that you're writing a function, and the name that comes right after it is the name we'll use to call the function.
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 have integer values and return the same ...