map Function in Python | Map in Python | Python Tutorial for Beginners in Hindi

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

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

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

    Thank you

  • @gopika6198
    @gopika6198 7 หลายเดือนก่อน +2

    Sir please make videos on dsa with python.. ur videos r superb👍🏻

    • @Codeyug
      @Codeyug  7 หลายเดือนก่อน +2

      Thank you and I will surely work on DSA

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

    Sir binary search tree in data structure with python ka video hai kya sir

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

      No

  • @viratking-mz1ki
    @viratking-mz1ki 7 หลายเดือนก่อน

    denomination of list =[1,2,5,10,20,50,100,200,500] output = 451 write a program to least number of combination of output for example 451 = 200*2+50*1+1*1 = so there is 4 denomination please provide solution this is cgi interview question

  • @theraizadatalks14
    @theraizadatalks14 2 หลายเดือนก่อน

    # We want square of only for odd no. in final list from given list
    nums = [ 5, 3, 8, 11, 6 ]
    filtered_obj = list(filter(lambda x: x%2!=0, nums))
    mapped_obj = list(map(lambda x: x**2, filtered_obj))
    print(mapped_obj)
    # Using List-Comprehension
    [i**2 for i in nums if i%2!=0]