+ 2
[Solved] Can anyone tell me how many argument here??
Like print(x , "num is", y) have 3 function arguments and print(x , "num is %d" %y) have???
1 Respuesta
+ 1
Shivam Maurya, why does your question still have [unsolved] in front of it? Didn't you understand Da Funkjoker's answer?
% is an operator. It creates a new string out of the left string and the right value to be entered.
So '%d' % 5 is evaluated to '5' and therefore becomes one argument.