+ 3
What is the function of print () ? Does it has anything to do with the arrangement of output?
ending code with print ()
5 Antworten
+ 4
"Print() " Is used to output data
e.g
A=4
B=10
Print(A)
=4
Your Output=4.
Hope it helped😁
+ 4
yeah
i ended my multiplication table with print () and the output was very organise.
when i deleted it, the table(output) scattered
+ 4
Thanks alot
that was a great help
+ 2
I think it is much based on sys.stdout object.
sys.stdout is like a file opened in a write mode.
You can draw things on the screen using sys.stdout.write("something")
0
Print () is an output function