Python in Kannada - For Loops | Range, Enumerate | Nested Loops | Full Course for Beginners - # 10

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

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

  • @spandana_dinesh
    @spandana_dinesh Месяц назад +22

    Hats off to you brother for the continuity 🫡🫡👏👏👏🚀🚀🚀🚀🫶🏻🫶🏻

  • @bhargavimk3854
    @bhargavimk3854 Месяц назад +7

    #Day 10
    Present 😊

  • @sanjeevnayak921
    @sanjeevnayak921 Месяц назад +3

    My morning routine is to watch your one video of python and practice it in the evening after work...

  • @krishnan3006
    @krishnan3006 Месяц назад +4

    💥# 4.Homework
    str=input("Enter the string: ")
    vowels="aeiouAEIOU"
    vowel_count=0
    for char in str:
    if char in vowels:
    vowel_count+=1
    print(f"Number of vowels are: {vowel_count}")

  • @bhanupriyal-z3r
    @bhanupriyal-z3r 8 дней назад

    # Write a for loop that prints all multiples of 3 between 1 and 30.
    for i in range(3,31,3):
    print(i)
    # Write a program using a for loop that calculates the sum of numbers from 1 to 10.
    total_sum = 0
    for i in range(1,11):
    total_sum += i
    print(total_sum)
    # Write a program that takes your name as input and prints each letter of your name using a for loop.
    input_name=input("Enter a name >> ")
    for character in input_name:
    print(character)
    # Write a program that counts how many vowels are in a given string using a for loop.
    input_name=input("Enter a name >> ")
    vowels="aeiouAEIOU"
    count_char=0
    for char in input_name:
    if char in vowels:
    count_char += 1
    print(count_char)

  • @AnilKumar-dg9tk
    @AnilKumar-dg9tk 14 дней назад

    Homework:
    1.Write a for loop that prints all multiples of 3 between 1 and 30.

    for i in range(3,30,3):
    print(i)
    2.Write a program using a for loop that calculates the sum of numbers from 1 to 10
    sum=0
    for i in range(1,11):
    sum+=i
    print(f"The sum of numbers from 1 to 10 is:{sum}")
    3.Write a program that takes your name as input and prints each letter of your name using a for loop.
    name=input("Enter your name: ")
    for i in name:
    print(i[0])
    4.Write a program that counts how many vowels are in a given string using a for loop.
    string=input("Enter the string: ")
    vowels=("a","e","i","o","u")
    count=0
    for i in range(len(string)):
    if string[i] in vowels:
    count+=1
    print(f"Total number of vowels in the string:{count}")

  • @parashualwaysat3811
    @parashualwaysat3811 День назад

    awesome teaching

  • @krishnan3006
    @krishnan3006 Месяц назад +2

    💥#1. HOMEWORK
    for i in range(1,31):
    if i%3==0:
    print(i)

  • @ragvendrabgowda
    @ragvendrabgowda Месяц назад

    #1. Multiples of 3:
    #Write a for loop that prints all multiples of 3 between 1 and 30.
    for i in range(3, 4):
    for j in range(1, 31):
    print(f"{i}X{j} = {i*j}")
    #2. Sum of First 10 Numbers:
    #Write a program using a for loop that calculates the sum of numbers from 1 to 10.
    numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
    Sum= 0
    for number in numbers:
    Sum += number
    print("Sum of: ", Sum)
    #3. Print Your Name Letter by Letter:
    #Write a program that takes your name as input and prints each letter of your name using a for loop.
    name = "Ragvendra"
    for index, letter in enumerate(name):
    print(letter)

  • @krishnan3006
    @krishnan3006 Месяц назад +2

    💥# 3.HOMEWORK
    name=input("Enter your Name: ")
    for i in name:
    print(i)

  • @VarshaGt-k3x
    @VarshaGt-k3x Месяц назад +1

    This is so intresting

  • @HemaSR-hk3yb
    @HemaSR-hk3yb 2 дня назад

    Tqsm annaa ❤
    Present bro

  • @krishnan3006
    @krishnan3006 Месяц назад +2

    💥# 2.HOMEWORK
    for i in range(1,11):
    print(f"Sum of 1 to {i} are:{i+i}")

    • @kirans1715
      @kirans1715 Месяц назад +1

      @@krishnan3006
      i=೦
      For l in range(1, 11)
      i+=l
      Print (i)
      This is my logic

    • @krishnan3006
      @krishnan3006 Месяц назад

      @@kirans1715 👍♥️

  • @NimmaHuduga-y9e
    @NimmaHuduga-y9e Месяц назад +1

    Write a for loop that prints all multiples of 3 between 1 and 30.
    for num in range(1,30):
    if num % 3 == 0:
    print(num)

  • @NimmaHuduga-y9e
    @NimmaHuduga-y9e Месяц назад +1

    Write a program using a for loop that calculates the sum of numbers from 1 to 10.
    total = 0
    for num in range(1,11):
    total = total + num
    print(num)
    print(f"sum is {total}")

  • @kirans1715
    @kirans1715 Месяц назад +2

    Placing logic code at the right place matters, I need to work on that

  • @anthonymary1cyril5
    @anthonymary1cyril5 9 дней назад

    books=["comic","fiction","science","art","math"]
    for Box in books:
    print(Box)

  • @NareshKichha-fi4df
    @NareshKichha-fi4df Месяц назад +1

    Sir e class tumba intersting agi ittu 💓🫶❤❤️‍🔥🙏

  • @entireworld.
    @entireworld. Месяц назад

    Love you bro! I liked your explanation and learning continuously without deviating. Thanks

  • @tharungowdar7830
    @tharungowdar7830 25 дней назад

    bro plzzz continue the lectures its helpful

  • @sachinrai6778
    @sachinrai6778 Месяц назад

    Home Work 4: Code
    string = input("enter string as your wish: ")
    vowels = "aeiouAEIOU"
    vowel_count = 0
    for char in string:
    if char in vowels:
    vowel_count += 1
    print(f"total vowels in given sting: {vowel_count}")
    output:
    input: hello
    total vowels in given sting:2

  • @deekshitha18-9
    @deekshitha18-9 Месяц назад

    Learnt more when solving homework and extra questions

  • @sachinrai6778
    @sachinrai6778 Месяц назад

    Home Work 01: Code
    for i in range(3,31,3):
    print(f"{i} ", end="")
    output:
    3 6 9 12 15 18 21 24 27 30

  • @ChethanDILEEP
    @ChethanDILEEP Месяц назад +1

    Bro formatted string na yav time nali use madbeku bro

  • @kirans1715
    @kirans1715 Месяц назад +1

    Present guru, late attendance today. Sometimes we write logic in different place

  • @PrajwalBs-nh4nc
    @PrajwalBs-nh4nc Месяц назад

    #Day-11
    #HomeWok-01
    for i in range(1,31):
    if i%2==0:
    print(i)
    #HomeWork-02
    sum=0
    for i in range(1,11):
    sum+=i
    print("total sum of 1 to 10 is : ",sum)
    #HomeWork-03
    name="prajwal"
    for index,letters in enumerate(name) :
    print(letters*(index+1))
    #HomeWork-04
    string=input("give an input : ")
    sum=0
    vowels="aeiouAWIOUU"
    for vowel in string:
    if vowel in vowels:
    sum+=1
    print("total number of vowels in the given string is :",sum)

  • @supriths8940
    @supriths8940 Месяц назад +1

    Present Chandan 💯❤️

  • @sachinrai6778
    @sachinrai6778 Месяц назад

    Home Work 2: Code
    sum=0
    for i in range(1,11):
    sum+=(i)
    print(sum)
    output:
    55

  • @prajwalm326
    @prajwalm326 Месяц назад +2

    Present anna ❤

  • @sachinrai6778
    @sachinrai6778 Месяц назад

    Home work No:03 code
    name = input("enter name: ")
    for letter in name:
    print(letter)
    output:
    enter name: sachin
    s
    a
    c
    h
    i
    n

  • @SangeethaSangeetha-s7m
    @SangeethaSangeetha-s7m Месяц назад

    Thank you so much 😊

  • @KEERTHANAKS-t4e
    @KEERTHANAKS-t4e Месяц назад +1

    I = "10th day present bro"
    print(i)
    O/P: 10th day present bro

  • @googlyappu
    @googlyappu Месяц назад

    Thank u so much for the wonderful class ❤, waiting for next class😊

  • @Kaviraj-i6j
    @Kaviraj-i6j Месяц назад

    for i in range(1,100,2):
    print (f"i 🥹{i},end=""")
    while i

  • @Suprith_6363
    @Suprith_6363 Месяц назад +2

    Present sir❤❤❤

  • @rahuln4804
    @rahuln4804 Месяц назад +1

    day 10 done

  • @bhushankotabagi7185
    @bhushankotabagi7185 Месяц назад +1

    How we can print table by without using formatted string

  • @thomasshelby-dg2jq
    @thomasshelby-dg2jq Месяц назад

    Bro hackerrank alli yavg practice madbeku adna upcoming vedios alli heltira

  • @NimmaHuduga-y9e
    @NimmaHuduga-y9e Месяц назад

    Write a program that counts how many vowels are in a given string using a for loop.
    string = input("Enter the sentence to count vowels>> " )
    vowels = "aeiouAEIOU"
    Vowel_count = 0
    for x in string:
    if x in vowels:
    Vowel_count += 1
    print(f"the number of vowels in the string {string} is {Vowel_count}")

  • @MG_Gaming577
    @MG_Gaming577 Месяц назад +2

    anna video masth madthi clear agi artha aketh

  • @yatharvram
    @yatharvram Месяц назад +1

    Present bhai❤

  • @NimmaHuduga-y9e
    @NimmaHuduga-y9e Месяц назад

    Write a program that takes your name as input and prints each letter of your name using a for loop.
    name = input("Enter your name: ")
    for i in name:
    print(i)

  • @Peakpulse_11
    @Peakpulse_11 Месяц назад

    n=2
    For i in range (1,11):
    Print (i*n)

  • @sathishvs6750
    @sathishvs6750 Месяц назад +1

    Hi bro good evening

  • @ravindrakyadiggeri2665
    @ravindrakyadiggeri2665 Месяц назад +1

    Bro among B. E and BCA which one is better

  • @manojhcstd
    @manojhcstd Месяц назад +1

    Present 💝 bro

  • @worldwide362
    @worldwide362 Месяц назад

    Waiting for ur video❤

  • @SushmitaAngadi-pq7zo
    @SushmitaAngadi-pq7zo Месяц назад +1

    Present anna😊

  • @gogeearth8682
    @gogeearth8682 Месяц назад +1

    When we use enumerate keyword we can do unpacking right but while using for loop in dictionary .. without using enumerate.. key and value is unpacked...?? Is it not necessary to use enumerate here

  • @AkshayRaj4712
    @AkshayRaj4712 Месяц назад

    Super bro

  • @akashpartha2642
    @akashpartha2642 Месяц назад

    Wating bro day 10 present

  • @sindubanavasi584
    @sindubanavasi584 Месяц назад

    Present sirr.....😊❤

  • @parvatibparub3020
    @parvatibparub3020 Месяц назад

    Bro how to print "×"(multiply symbol) in computer

  • @bhuvaneshbhuni5383
    @bhuvaneshbhuni5383 Месяц назад

    Broo I really hands of you broo

  • @preetishebannavar3464
    @preetishebannavar3464 Месяц назад

    Day 10🎉

  • @ManjuManjunathaGP
    @ManjuManjunathaGP Месяц назад

    Brother please say in which app we can use this python for studying in mobile only

  • @chtxxx8055
    @chtxxx8055 Месяц назад +1

    2nd year roadmap please

  • @Dhanush67754
    @Dhanush67754 Месяц назад

    Hi bro, neevy complete Python heli kodteera, navu job ge yava step alli appply madabahudu

  • @AmulyaAmmu-k5z
    @AmulyaAmmu-k5z Месяц назад

    Day 10❤

  • @Cri_ket_sports_7
    @Cri_ket_sports_7 Месяц назад

    Present ❤

  • @mallikarjunareddyp3886
    @mallikarjunareddyp3886 Месяц назад

    Present Anna 💝

  • @JyothiJyothimc-i9u
    @JyothiJyothimc-i9u Месяц назад

    Day 10❤🥳

  • @aryakg1504
    @aryakg1504 Месяц назад

    Present bro ❤

  • @Sanjaydevadig514
    @Sanjaydevadig514 Месяц назад +1

    ❤🎉

  • @abhisheks5964
    @abhisheks5964 Месяц назад

    Present sir ❤

  • @KishanS-r7h
    @KishanS-r7h Месяц назад

    Bro I am unable to get the output of the 3rd homework.can anyone give the code...

  • @Prakrathi-shetty
    @Prakrathi-shetty Месяц назад

    present sir
    2nd year roadmap plz

  • @anushamutagi2131
    @anushamutagi2131 Месяц назад

    Present bro😊

  • @AnjaneyaNayak-m2k
    @AnjaneyaNayak-m2k Месяц назад

    ❤❤❤

  • @quotesbyexperience4897
    @quotesbyexperience4897 Месяц назад

    Present sir 🙋

  • @ManjuManjunathaGP
    @ManjuManjunathaGP Месяц назад

    Because pydroid is not working from LCM factor I was watching ur video which u have done just python basics in that i saw about that app please say na from which app we can learn python in mobile

  • @Manasa.D-hv6vs
    @Manasa.D-hv6vs Месяц назад

    Present😊

  • @Shruti2028
    @Shruti2028 Месяц назад

    Present brother

  • @Kidshome12w
    @Kidshome12w Месяц назад

    Sjce good for cs?

  • @MG_Gaming577
    @MG_Gaming577 Месяц назад

    present anna

  • @sampath5393
    @sampath5393 Месяц назад

    ❤🙌

  • @NaaguShivakumar
    @NaaguShivakumar Месяц назад

    Anna enumerate svlpa artha agill

  • @MG_Gaming577
    @MG_Gaming577 Месяц назад

    from hubli

  • @deekshitha18-9
    @deekshitha18-9 Месяц назад

    Present anna

  • @amaregoudapatil9770
    @amaregoudapatil9770 Месяц назад

    🤚

  • @SavitaG-p2r
    @SavitaG-p2r Месяц назад +1

    Present sir

  • @PoojaBayappagol
    @PoojaBayappagol Месяц назад

    Class 10
    I am present ✋🏼guru

  • @FBIChinmay
    @FBIChinmay Месяц назад

    10

  • @LavaKumar-ro7cb
    @LavaKumar-ro7cb Месяц назад +2

    Present Sir

  • @LikhithGowdak
    @LikhithGowdak 22 дня назад

    siuuu

  • @chandushree.n8361
    @chandushree.n8361 Месяц назад

    Present bro

  • @Yashwanth_05-k1
    @Yashwanth_05-k1 Месяц назад

    Howdu bro i am finding difficulty in loops😢

  • @gamingchandan82
    @gamingchandan82 Месяц назад

    Present

  • @ManjulaManju-jg1sl
    @ManjulaManju-jg1sl Месяц назад

    Prsnt Anna

  • @padminic6542
    @padminic6542 Месяц назад

    𝙿𝚛𝚎𝚜𝚎𝚗𝚝 𝚊𝚗𝚗𝚊❤

  • @niranjanms2004
    @niranjanms2004 Месяц назад

    22:39 Benki

  • @rajumalenavar9431
    @rajumalenavar9431 Месяц назад

    bro I hv doubt so Plz gv ur E-ID

  • @preetishebannavar3464
    @preetishebannavar3464 Месяц назад

    Day 10🎉

  • @RameshaShimoga
    @RameshaShimoga Месяц назад

    Present ❤

  • @sachinrai6778
    @sachinrai6778 Месяц назад

    Present bro😊

  • @Dhanushmd-e3u
    @Dhanushmd-e3u Месяц назад

    present anna❤

  • @fayazsoratur143
    @fayazsoratur143 Месяц назад

    Present bro❤

  • @SakshiShetty-i7s
    @SakshiShetty-i7s Месяц назад

    Present sir ❤

  • @jayanth.cjayanth3394
    @jayanth.cjayanth3394 Месяц назад

    Present sir❤❤❤

  • @rohithnt5028
    @rohithnt5028 Месяц назад

    Present brother