Using the print() function! Flashcards
What is the print() function used for?
The print() function is used to display the output of any command on the screen, or to print any specified messages.
What does it mean that Python is a case-sensitive language?
Python is a case-sensitive language, which means it differentiates between capital and small letters.
Give an example of how Python is a case sensitive language.
Print(P capital) and print(p small) are 2 different things for python, where print is a valid command for python and Print is just a word, not a command.
How to pass more than one argument to the print() function?
You can also pass more than one argument to the print() function by separating the arguments with a comma.