%d在此行中做什么?

时间:2018-10-16 16:43:25

标签: python python-3.x

%d在我的代码行中做什么?

<script>
    var button = document.createElement("button");
    var aTag = document.createElement('a');
    aTag.setAttribute('href','http://www.google.com');
    aTag.innerHTML = '$1.00';
    button.appendChild(aTag);
    divInnerElement.appendChild(button);

    // button.addEventListener ("click", function() {
    //   window.location.href = 'http://www.google.com';
    // return false;
    // });  
    </script>

这是我的代码。

puppy+="and Puppy %d (User %d) "%((j+1),(i+1))

以下是输入和输出,供您参考。

Here's the input and output for reference

1 个答案:

答案 0 :(得分:2)

它将字符串后面的值放入%d处的字符串中。第一个%d获取第一个值,第二个%d获取第二个值,依此类推...

因此它像这样打印。 “和Puppy(无论j + 1是什么)(用户(无论我+1是什么))”