1,234
edits
Changes
→PART 1 - Common Introductory Python Functions
pwd
ls
</source>Our first python code we will write is going to call the print function. A function is code that has been defined in another location. Functions can take arguments, use these arguments in some way, and then usually return a result. The first function we will use is the "print()" functions, it's sole purpose is to output information to the screen.<br><br>
:#At the prompt, issue the following python function:<source>
print()