Pandas-数字前面补0

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pandas-数字前面补0相关的知识,希望对你有一定的参考价值。

参考技术A

在输出一些编号类型的数字时,往往需要前面补0,比如这样的数字:

要把这些1234什么的都加一个0,可以直接用apply,里面用format就好,但是format的格式的确是有一些忘了,在这里记录一下:

:0>2d 的意思就是补成两位,用 0 补, > 是向左补, d 是类型。

顺便记录一下format函数的其他格式:
:.2f 保留小数点后两位
:+.2f 带符号保留小数点后两位
:+.2f 带符号保留小数点后两位
:.0f 不带小数
:0>2d 数字补零 (填充左边, 宽度为2)
:x<4d 数字补x (填充右边, 宽度为4)
:x<4d 数字补x (填充右边, 宽度为4)
:, 以逗号分隔的数字格式
:.2% 百分比格式
:.2e 指数记法
:>10d 右对齐 (默认, 宽度为10)
:<10d 左对齐 (宽度为10)
:^10d 中间对齐 (宽度为10)

JQuery倒计时和按照指定长度为数字前面补零

JQuery按照指定长度为数字前面补零

function PrefixInteger(num, length) {
    return (Array(length).join(‘0‘) + num).slice(-length);
}

PrefixInteger(8,2); 返回08,表示长度为2,数字8前面补一个0。

JQuery倒计时

var rest = 4350859;  //时间戳

console.log(rest);

$day = Math.floor(rest/(60*60*24));

console.log($day);

$hour = Math.floor((rest - $day * (60*60*24))/(60*60));

console.log($hour);

$minite = Math.floor((rest - $day * (60*60*24) - $hour * (60*60))/60);

console.log($minite);

$second = Math.floor(rest - $day * (60*60*24) - $hour * (60*60) - $minite * 60);

console.log($second);

$day = PrefixInteger($day,2);
$hour = PrefixInteger($hour,2);
$minite = PrefixInteger($minite,2);
$second = PrefixInteger($second,2);

$("#my_day").html($day);
$("#my_hour").html($hour);
$("#my_minite").html($minite);
$("#my_second").html($second);

window.setInterval(function(){

     rest--;

    console.log(rest);

    $day = Math.floor(rest/(60*60*24));

    console.log($day);

    $hour = Math.floor((rest - $day * (60*60*24))/(60*60));

    console.log($hour);

    $minite = Math.floor((rest - $day * (60*60*24) - $hour * (60*60))/60);

    console.log($minite);

    $second = Math.floor(rest - $day * (60*60*24) - $hour * (60*60) - $minite * 60);

    console.log($second);

    $day = PrefixInteger($day,2);
    $hour = PrefixInteger($hour,2);
    $minite = PrefixInteger($minite,2);
    $second = PrefixInteger($second,2);

    $("#my_day").html($day);
    $("#my_hour").html($hour);
    $("#my_minite").html($minite);
    $("#my_second").html($second);
},1000);
html代码:
<ul class="countdown">
    <li> <span class="days" id="my_day">00</span>
        <p class="days_ref">天</p>
    </li>
    <li class="seperator">.</li>
    <li> <span class="hours" id="my_hour">00</span>
        <p class="hours_ref">时</p>
    </li>
    <li class="seperator">:</li>
    <li> <span class="minutes" id="my_minite">00</span>
        <p class="minutes_ref">分</p>
    </li>
    <li class="seperator">:</li>
    <li> <span class="seconds" id="my_second">00</span>
        <p class="seconds_ref">秒</p>
    </li>
</ul>

这样倒计时功能就完成了,这里css样式就需要大家自己去写了!!!技术分享技术分享


本文出自 “高万耀” 博客,请务必保留此出处http://gaowanyao.blog.51cto.com/11272977/1947145

以上是关于Pandas-数字前面补0的主要内容,如果未能解决你的问题,请参考以下文章

oracle数字前面补0

excel 里面如何在数字前面补 0?

js数字前面补0

数字转字符串,长度前面补0

Java数字格式化输出时前面补0

Python自动给数字前面补0的方法