+ 1
What's mean print()
what is use it??? without parameters
3 Respostas
+ 1
print is a way to write something on the standard output.
Not only on the screen, because if you use it on a computer or an embedded system, the standard output can be completely something else like a file
example:
python myprogram.py > result.txt
This command line redirect the standard output to the file result.txt.
+ 1
The print() function prints the specified message to the screen
0
In Python language is used to output data on the screen computer.