Mention any two features of print ( ) function.
Answers
Answered by
3
The separator between the arguments to print() function in Python is space by default (softspace feature) , which can be modified and can be made to any character, integer or string as per our choice. The 'sep' parameter is used to achieve the same, it is found only in python 3.
Explanation:
The print() function prints the given object to the standard output device (screen) or to the text stream file.
Similar questions