Python Program to Calculate Factorial of a Number | Factorial Program in Python | Python Programs

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ต.ค. 2024
  • Python Program to Calculate Factorial Of Number | Factorial Program in Python | Python Programs #16
    In This Tutorial, We will learn a Python Program to Calculate the Factorial Number.
    🔔 Support Us by SUBSCRIBING. And Please Like, Comment & Share our Tutorials 🔔
    ~Contact us:-
    ►Subscribe: bit.ly/wscubech...
    ► Facebook : / wscubetech.india
    ► Twitter : / wscube
    ► Instagram : / wscubetechindia
    ► LinkedIn : / wscube-tech
    ► TH-cam : / wscubetechjodhpur
    ► Website: wscubetech.com
    ♥️ Thank You ♥️
    #FactorialProgramInPython #Python #PythonProgramming

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

  • @amoghpandey6857
    @amoghpandey6857 ปีที่แล้ว +13

    Sir you saved my cs exam

  • @ryanpanhalkar8626
    @ryanpanhalkar8626 4 หลายเดือนก่อน

    Very helpful

  • @supersaiyan9854
    @supersaiyan9854 6 หลายเดือนก่อน +1

    thank you so much sir yeh book se padhne pe bilkul samajh nahi aya tha ki while loop k baad kya ho raha tha

  • @vignesh0408
    @vignesh0408 11 หลายเดือนก่อน +2

    Very nice explanation ❤

  • @akverma675
    @akverma675 ปีที่แล้ว +3

    Excellent explained

  • @abolibhanuse1516
    @abolibhanuse1516 ปีที่แล้ว +2

    Very good explanation ❤️

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

    Thanks sir

  • @prashanthiremath2118
    @prashanthiremath2118 11 หลายเดือนก่อน

    Well explained.

  • @manojvijyant312
    @manojvijyant312 ปีที่แล้ว +4

    def factorial(num):
    if num == 0:
    return 1
    else:
    return num * factorial(num-1)
    num = int(input("Enter a number: "))
    print("Factorial of",🚁 num, "is", factorial(num))
    Sir could u explain me this line that how does it work
    return num * factorial(num-1)

    • @harshitpatel6090
      @harshitpatel6090 14 วันที่ผ่านมา

      It work like if you take no. 4 than
      4*(3!) like thiss

  • @rajaryan8378
    @rajaryan8378 4 หลายเดือนก่อน +3

    a++ is not valid in python…what a rubbish lecture