Variable Length Arguments in Python | Python Tutorial in Hindi | Types of Arguments in Python

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

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

  • @Naveen-rz2zv
    @Naveen-rz2zv 3 หลายเดือนก่อน

    Good understanding

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

    Thank you

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

    I am learning python from your playlist and I must say your teaching is very nice please make video on tkinter module plss it is in my syllabus and you explain very clearly

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

      @@learndeenkz-ph1fb thanks and please do share

  • @RamaKrishna-ll8iz
    @RamaKrishna-ll8iz 5 หลายเดือนก่อน +2

    Hi could anyone help me to get understand below problem
    def add(*things):
    sum1=0
    for i in things:
    sum1=sum1+i
    print(sum1) ##################### 2 places we gave print. in the output we got None . why ????
    print(add(1,2))
    print(add(4,5,6))

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

      You have to give the return value at the end of the function code,
      You got the none value because you didn't add the return value at the end of the function.

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

      Follow my functional programming tutorial and you will get the answer

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

    Thank you.