List Comprehension in Python

Поділитися
Вставка
  • Опубліковано 1 січ 2025

КОМЕНТАРІ • 61

  • @dsalgos
    @dsalgos 6 місяців тому +7

    You must be very good at planning things !! Your videos are extremely organized !! Watching like a Web series !!

  • @harishmahajan6845
    @harishmahajan6845 Рік тому +25

    home work problem = using for loop list print First char in Capital.
    this is by using list comprehension
    animals = ['lion','tiger','monkey','elephant','frog']
    filtered_animal = [animal.title() for animal in animals]
    print(filtered_animal)

  • @mohammedrezk8072
    @mohammedrezk8072 Рік тому +10

    Thx and my answer is
    filtered_animals= [x.title() for x in animals ]
    please let me what's correct answer..

  • @izainonline
    @izainonline 6 місяців тому +3

    This concept can be used in data scrapping like extracting the data and saving in j.names[ ]
    My suggestion is to give examples of code can be used in what scenarios so that interest and concept will be strong for new learners.

    • @asahade3847
      @asahade3847 5 місяців тому

      @@izainonline hello . Do you have a Channel..? Thanks for the tip.

  • @jereddymanojkumar3830
    @jereddymanojkumar3830 Рік тому +14

    animals =[ 'lion' ,'tiger', 'monkey', 'elephant', 'frog']
    filtered_animals=[ animals.tittle() for animal in animals ]
    filtered_animals=['Lion', 'Tiger', 'Monkey', 'Elephant', 'Frog']
    When we use tittle() method on string it will do each letter of first character will upper case remaining lower case and it will return string and it doesn't take parameters

  • @Arian003Mi
    @Arian003Mi 6 місяців тому

    Wow man you explain programming best out of other youtubers ngl

  • @Anonymous-k9m7g
    @Anonymous-k9m7g Рік тому +18

    Your teaching language owesom 😅 sometimes I forget that you are speaking in English 😅

    • @izainonline
      @izainonline 6 місяців тому

      😂

    • @RuralLifeAndNature
      @RuralLifeAndNature 3 місяці тому

      😂 same situation

    • @DVST23
      @DVST23 Місяць тому

      I like his teaching and voice....ty brother 😂😂

  • @jingersatuh6322
    @jingersatuh6322 10 місяців тому +1

    This is a hard topic, but well explained.

  • @monishamoni.k2543
    @monishamoni.k2543 23 дні тому

    i like this explanation

  • @vigilante191
    @vigilante191 3 місяці тому

    animals=["lion","tiger","monkey","elephant","frog"]
    filtered_animals=[animal.title() for animal in animals]
    print(filtered_animals)..
    thanks neso academy

  • @manojsingh5757
    @manojsingh5757 19 днів тому

    please make a detailed step by step video on Transpose of matrix topic in python. 🙏

  • @pgkgaming4229
    @pgkgaming4229 8 місяців тому

    Osm teaching nice explanation ❤❤❤

  • @santoshluhar2626
    @santoshluhar2626 Рік тому +7

    [animal.title() for animal in animals]

    • @tayyab.sheikh
      @tayyab.sheikh 6 місяців тому +1

      I was gonna comment the same!

  • @Harbingersknight21
    @Harbingersknight21 9 місяців тому +1

    Homework question answer -:
    animals = ['lion' , 'tiger' , 'monkey' , 'elephant' , 'frog']
    filtered_animals=[animal.title() for animal in aminals]
    print(filtered_animals)

  • @II_Emilia_II
    @II_Emilia_II Рік тому

    Very helpful, thanks :)

  • @AlexandraSasha
    @AlexandraSasha 10 місяців тому

    #list comprehension(conv. from for loop), shortened list
    animals = ['lion', 'tiger', 'python']
    filtered_animals=[animal.title() for animal in animals]
    print(filtered_animals) # Output: ['Lion', 'Tiger', 'Python']

  • @RahulSingh-qs9ed
    @RahulSingh-qs9ed 9 місяців тому +1

    animal = ["lion","tiger","monkey","elephent","frog"]
    Fanimal = [a.title() for a in animal]
    print(Fanimal)

  • @asahade3847
    @asahade3847 5 місяців тому

    What is the animal.title function and why followed by the ()..
    Thanks

    • @jsmphompho8052
      @jsmphompho8052 5 місяців тому

      it's a string method used to convert a first character of a string to an uppercase then the rest are converted to lowercase characters

  • @JignaPatel-q7h
    @JignaPatel-q7h 5 місяців тому

    i'm not able to run list comprehension example .

  • @thisulakagunaweera2958
    @thisulakagunaweera2958 21 день тому

    thanks!

  • @archanavennela8737
    @archanavennela8737 7 місяців тому

    Sir can we have python DSA classes please

  • @sskilledgame4132
    @sskilledgame4132 Місяць тому

    sir new list append ethods kar sath hai

  • @stellamargy8075
    @stellamargy8075 Рік тому +1

    filtered_animals=[animal.title() for animal in animals ]

  • @lionelfaith3646
    @lionelfaith3646 Рік тому

    animals= ['lion','tiger','monkey','elephant','frog']
    filtered_animals=[animal.title() for animal in animals]
    print(filtered_animals)
    output: ['Lion', 'Tiger', 'Monkey', 'Elephant', 'Frog']

  • @NormieDead
    @NormieDead 9 місяців тому

    Ans:
    ```
    animals = ['lion', 'tiger','monkey','elephant','frog']
    filtered_animals = [animal.title() for animal in animals ]
    print(filtered_animals)
    ```

  • @Yomdheal
    @Yomdheal 7 місяців тому

    list(print("animal.title()" for animal in animals))

  • @WhatsonthemenubyRoopali
    @WhatsonthemenubyRoopali 2 місяці тому

    filtered_animals = [animal.title() for animal in animals]
    filtered _animals
    Enter
    List comprehension answer!!

  • @bhargav10x9
    @bhargav10x9 Місяць тому

    fa=[animal.title() for animal in animals]

  • @zokbrains1129
    @zokbrains1129 7 місяців тому

    >>>animals = ['lion', 'tiger', 'monkey', 'elephant', 'frog']
    >>>Filtered _animals = [animal_title() for animal in animals]
    >>>Filtered _animals
    ['lion', 'tiger', 'monkey', 'elephant', 'frog']
    >>>

  • @dsalgos
    @dsalgos 6 місяців тому

    filtered_animals = [value.title() for value in animals]

  • @jingersatuh6322
    @jingersatuh6322 10 місяців тому

    >>> animals = ["lion", "tiger", "monkey", "elephant", "frog"]
    >>> filtered_animals = [animal.title() for animal in animals]
    >>> filtered_animals
    ['Lion', 'Tiger', 'Monkey', 'Elephant', 'Frog']

  • @Raja-tt4ll
    @Raja-tt4ll 7 місяців тому

    Super

  • @AbdulDanmalan
    @AbdulDanmalan Рік тому

    filtered_animals = [ "animal title() " for animal in animals]

  • @abhasjaiswal2384
    @abhasjaiswal2384 Рік тому

    animals = ['lion', 'tiger', 'monkey', 'elephant', 'frog']
    filtered_animals = [animal.title() for animal in animals]

  • @somanathking4694
    @somanathking4694 Рік тому

    animal = [i.title() for i in animals]
    animal
    ['Lion', 'Tiger', 'Monkey', 'Elephant', 'Frog']

  • @Lalitamm
    @Lalitamm Рік тому

    animals = ['lion', 'tiger', 'monkey', 'elephant', 'frog']
    filtered_animals = [animal.title() for animal in animals ]
    print(filtered_animals)

  • @kingR-p6n
    @kingR-p6n 5 місяців тому

    animals = ["lion", "tiger", "elephant", "monkey", "frog"]
    animals_2 =[animal.title() for animal in animals]
    print(animals_2)

  • @Movie_in_hindi8
    @Movie_in_hindi8 9 місяців тому

    #Homework
    filtered_animals = [animal.title() for animal in animals]
    print(filtered_animals)

  • @chriswa3346
    @chriswa3346 Рік тому +3

    First

  • @nithishm6619
    @nithishm6619 11 місяців тому

    animals = ['lion','tiger','monkey']
    f_animals = [animal for animal in animals]
    print(f_animals)

  • @sonamankit4969
    @sonamankit4969 Місяць тому

    animals=['lion', 'tiger','monkey','elephant','frog' ]
    update_animals=[animal.title() for animal in animals ]
    print(update_animals)

  • @sigmatronX
    @sigmatronX 9 місяців тому

    animals = ['lion', 'tiger', 'monkey', 'elephant', 'frog']
    filtered_animals = [ ]
    filtered_animals = [name.title( ) for name in animals]
    print(filtered_animals)

  • @suchetrana156
    @suchetrana156 Рік тому +1

    ani = ['lion', 'tiger', 'monkey','elephant']
    ani_2 = [x.title() for x in ani ]
    ani_2

  • @madhav.s2707
    @madhav.s2707 4 місяці тому

    name for name in names if "J" in name... You could think of anything more complex🤣

  • @deviprasadpandey
    @deviprasadpandey Рік тому

    filtered_animals=[animal.title()for animal in animals]

  • @kingR-p6n
    @kingR-p6n 5 місяців тому

    animals = ["lion", "tiger", "elephant", "monkey", "frog"]
    animals_2 =[animal.title() for animal in animals]
    print(animals_2)

  • @mesonchakma6442
    @mesonchakma6442 2 місяці тому

    animals = ['lion', 'tiger', 'monkey','elephant','frog']
    filtered_animal = [ animal.title() for animal in animals ]
    print(filtered_animal)

  • @joshualeblanc1276
    @joshualeblanc1276 8 місяців тому

    filtered_animals = [animal.title() for animal in animals]

  • @mohammedzakidarga4802
    @mohammedzakidarga4802 6 місяців тому

    filtered_animals = [animal.title() for animal in animals]

  • @peakyblinders3365
    @peakyblinders3365 5 місяців тому

    filtered_animals = [animal.title() for animal in animals]

  • @lingeshmaster3113
    @lingeshmaster3113 5 місяців тому

    filtered_animals = [animal.title() for animal in animals]

  • @curiositycure14
    @curiositycure14 4 місяці тому

    filtered_animals=[animal.title() for animal in animals]

  • @Rolexgupta-e2d
    @Rolexgupta-e2d Місяць тому

    filtered_animals = [animal.title() for animal in animals]