Thursday , September 19 2024

The print() function can output values of:

Questions BankCategory: Python Essentials 1The print() function can output values of:
The print() function can output values of:

  • any number of arguments (excluding zero)
  • not more than five arguments
  • any number of arguments (including zero)
  • just one argument

Explanation: The print() function can take no arguments at all (e.g. print()), three arguments (e.g. print("one", "two", "three"), or three thousand three hundred thirty three… (though we haven’t actually checked it!).

More Questions: Python Essentials 1 – Module 2 Test