How to prove that parameter evaluation is “left to right” in Python?

后端 未结 6 2112
梦毁少年i
梦毁少年i 2020-12-19 04:45

For example, in JavaScript we could write a program like this:

var a = 1;
testFunction(++a, ++a, a);
function testFunc         


        
6条回答
提交回复
热议问题