Based on the previous slides, name some functions that we've learned so far →
(Remember, a function is a named sequence of statements that performs a specific task or useful operation)
How do you use (call) built-in functions in your code? How would you call the function, str, on a value, 300 (that is, convert 300 to a string)? →
Using this code as an example:
Note that print does not return a value to your program; rather it prints values to the screen.
What is printed out by this program? →
The type of the result of calling str(5 + 5), which turns out to be? →