Back Navigation Next Navigation Video 3: First Statements (page 2 of 6)

Python is a case sensitive language, so Print(), print(), PRINT(), and PrinT() would all represent different functions. Of those, only print() is a legitimate Python function.

Print statement The print function displays or prints the value that gets passed to the function. We can also print numbers (not just strings).

Objects Everything in Python3 is an object, which means we can do things to our objects (e.g., we may change the case of 'Thomas' because 'Thomas' is a string object).