Count The Number Of Digits In A Number | Python Example

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ม.ค. 2025

ความคิดเห็น • 8

  • @Dhivya_03
    @Dhivya_03 ปีที่แล้ว +1

    Thank you for the clear explanation sir👍

  • @dinislam8119
    @dinislam8119 6 หลายเดือนก่อน +2

    What if the number is 0?

  • @satoruuu.000
    @satoruuu.000 5 หลายเดือนก่อน +1

    THANKS SIR !!!!!❤❤❤

  • @singhharsh-w6h
    @singhharsh-w6h 5 หลายเดือนก่อน +1

    thnx

  • @WhaadidAA_Dooo
    @WhaadidAA_Dooo 5 หลายเดือนก่อน

    whats the meaning of double slash?

    • @Ananyasareen_57
      @Ananyasareen_57 4 หลายเดือนก่อน +1

      Floor division:it divides and gives the quotient which is rounded off

    • @zakia-bin-salah
      @zakia-bin-salah 4 หลายเดือนก่อน +1

      **float division** which means it doesn't give answer in decimal form.

    • @punyatoyadhar3519
      @punyatoyadhar3519 6 วันที่ผ่านมา +1

      // stands for floor division operator, which removes the part after the decimal for a number. For example 1/2=0.5, but 1//2 is 0 because the part after decimal, that is, 5 is removed.
      Another example: 26/10 = 2.6, but 26//10 is 2.