+ 2
How many parameters can takes the print function in python?
4 Respuestas
+ 7
Infinite args for printout, but additionally you have three keyword-only options:
1.) sep - defines by which sign(s) your items will be separated (default: one whitespace).
2.) end - defines the last sign printed (default: '\n').
3.) file - defines where you print (default: sys.stdout).
4.) flush - empty the buffer.
(Only used the first two so far.)
+ 4
Infinite, it will print as many arguments as you provide it with.
+ 4
As many as your editor can allow
0
as many as you can feed it but be careful with what you feed it with