Python Functions with Notes | Python Tutorial - #55

Поделиться
HTML-код
  • Опубликовано: 4 окт 2024

Комментарии • 8

  • @Akshaykumar63345
    @Akshaykumar63345 3 месяца назад +1

    Thanks a lot sir. 🙏🙏. Great Explanation.

    • @kodegurukul
      @kodegurukul  3 месяца назад

      Thanks Akshay for your appreciation...

  • @rishiraj2548
    @rishiraj2548 3 месяца назад +1

    🙂🙏🏻

  • @nikhilchavhan8179
    @nikhilchavhan8179 3 месяца назад +1

    def calculation(a,b,c):
    inter=a*b*c/100
    return inter
    inter=calculation(5000,50,1)
    print(inter)

    • @kodegurukul
      @kodegurukul  3 месяца назад

      This is the correct one.

  • @amankumar-br8cq
    @amankumar-br8cq 3 месяца назад +1

    def interest(p,r,t):
    return p*r*t/100
    i = interest(9,4,5)
    print(i)

    • @kodegurukul
      @kodegurukul  3 месяца назад

      You answer is correct one aman.