#09 For Loop with examples Part 1 | in Tamil | Python Tutorial Series | Error Makes Clever Academy

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

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

  • @iamasharetrader8729
    @iamasharetrader8729 ปีที่แล้ว +50

    6 months uh Ethu etho video lam pathu last la namaku coding lam varathu pola nu think pana apo......verum 6 videos la confidence uh koduthuteenga❤❤❤❤

  • @sivakumarsubramani562
    @sivakumarsubramani562 ปีที่แล้ว +10

    e_count=0
    o_count=0
    a=int(input("entre the value of a:"))
    b=int(input("entre the value of b:"))
    for i in range(a,b):
    if(i%2==0):
    e_count=e_count+1
    else:
    o_count=o_count+1
    print("no. of add number:", o_count)
    print("no. of even number:", e_count)

  • @dhaksharupeshkumar28
    @dhaksharupeshkumar28 ปีที่แล้ว +45

    Sir small request... Intha question ella pdf ah description la post panna romba usefull ah irukum🥺

  • @subasreek
    @subasreek ปีที่แล้ว +13

    Bro, UI/UX kum nennga videos ithu mari upload pannaunga plz...
    Keep 🤘 rocking bro... Your teaching method is so good... Don't stop it..

  • @karthikpandian8522
    @karthikpandian8522 ปีที่แล้ว +35

    Anna ... All python chapters uploaded pannunga .help me my job

  • @subashsmiles5447
    @subashsmiles5447 7 หลายเดือนก่อน +4

    We can go with this as well, for i in range(2, 11, 2):
    print(i), however you have not yet introduced step function, so for "for" loop may be an initial alternative basic code for even number:

  • @arunhhh333
    @arunhhh333 ปีที่แล้ว +13

    e_count=0
    o_count=0
    for i in range(1,11):
    if(i%2==0):
    e_count=e_count+1
    if(i%2!=0):
    o_count=o_count+1

    print("Even :", e_count)
    print("Odd :", o_count)

    • @sigo4323
      @sigo4323 ปีที่แล้ว

      Ella numberum 1 alla divide ana remainder 0 tha bro varum

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

      Annanuku oru oothappamm

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

    Cound=0
    For i in range (1,5):
    If(i%2==0):
    Cound=cound+1
    If(i%2):
    Cound=cound+1
    Print(cound)
    Print(cound)

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

    Program:4
    count=0
    for i in range (1, 11):
    if(i%2==0):
    count=count+1
    print("even", count)
    count=0
    for i in range (1, 11):
    if(i%2==1):
    count=count+1
    print("odd", count)
    Intha method use panna out put
    even 5
    odd 5

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

      Cound=0
      For i in range (1,5):
      If(i%2==0):
      Cound=cound+1
      If(i%2):
      Cound=cound+1
      Print(cound)
      Print(cound)

  • @christinajenifer3440
    @christinajenifer3440 ปีที่แล้ว +1

    Super explanation Agnel John anna ......keep it up .......keep rocking..........waiting for your upcoming videos

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

    Evalvu clear ah yaralum solitharamudiyathu bro.thnq

  • @coddscreation1685
    @coddscreation1685 ปีที่แล้ว +1

    in for loop example for i in range (1,5).....we can get range from 1 to 4 only so the value will not reach upto 5

  • @hayyaalalfalah3076
    @hayyaalalfalah3076 ปีที่แล้ว +2

    there are 20 numbers divisible by 5 and 33 numbers divisible by 3 so the total numbers which are divisible by both 3 and 5 between 1 to 100 are 20+33=53 numbers. so 53 numbers are there which are divisible by both by 3 and 5 and the numbers are between 1 to 100.

    • @BLACKPRINCE_FF
      @BLACKPRINCE_FF 10 หลายเดือนก่อน

      Enaku intha doubt thaa vanthuchii
      But yen EMC bro i%3==0 pottarunu puriyala

  • @keerthana4386
    @keerthana4386 7 หลายเดือนก่อน +4

    Hi bro..Explain pandrathu romba Athiga neram edukarenga..Code laiye Clear a puriyara Simple questions ku kamiya explaination kudutha nalla irukum..Romba neram Explain panitae iruntha Confuse aguthu

  • @Mukeshkanna1111
    @Mukeshkanna1111 9 หลายเดือนก่อน

    i=0
    for Numbers in range(1,101):
    if(Numbers%3==0 and Numbers%5==0):
    i=i+1
    print("Divisible by 3n5 is",Numbers,"and it's count is",i)

  • @soniya28096
    @soniya28096 10 หลายเดือนก่อน

    Count the number of odd number between 1 and 10..
    Count=0
    for i in range(1,11):
    if(i%2==0):
    Count=count
    else:
    Count=count+1
    Print(count)

  • @Nareshvaithi
    @Nareshvaithi ปีที่แล้ว +4

    Nice teaching bro🤓

  • @muhmammedsuhail045
    @muhmammedsuhail045 ปีที่แล้ว

    #print even number between the given numbers.
    a=int(input("Enter a : "))
    b=int(input("Enter b : "))
    if(a

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

    count = 0
    e_count = 0
    for i in range (1,11):
    if i%2!=0:
    count=count+1
    print("Number of odds : ", count)
    for i in range (1,11):
    if i%2==0:
    e_count=e_count+1
    print("Number of even : ", e_count)

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

    Good Explanation❤

  • @RANJITHARAJENDRAN-b3f
    @RANJITHARAJENDRAN-b3f ปีที่แล้ว +3

    Bro (1,5)
    4 varaiku thaana check aaagum neenga yen 5 yu chech panreenga

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

    Clear explanation ❤😊

  • @sangeethaa3045
    @sangeethaa3045 3 หลายเดือนก่อน +2

    Anna neeninga vera leval 👍🏻

  • @SKTheConqueror
    @SKTheConqueror ปีที่แล้ว

    count_div_3 = 0
    count_div_5 = 0
    for i in range(1,101):
    if i%3==0 and i%5==0:
    count_div_3= count_div_3 + 1
    count_div_5= count_div_5 + 1
    print("divisibles of 3:",count_div_3)
    print("divisibles of 5:",count_div_5)

  • @roger.r6955
    @roger.r6955 ปีที่แล้ว +2

    count=0
    for i in range(1,11):
    if(i%2 or 1==0):
    count=count+1
    print("Even :",count)
    print("Odd :",count)
    Bro ipdi podalama??

  • @lalithatamil5708
    @lalithatamil5708 ปีที่แล้ว

    Thanks for yr clear explainations.. Keep going bro

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

    Bro neenga 8+1 nu print panradhu ku bathila direct 9 nu print pannalam la bro ???

  • @computrons2023
    @computrons2023 ปีที่แล้ว +1

    #print 1to10 even number
    for i in range(0,11,2):
    print(i)

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

    Super bro clear explanation

  • @sreenivasan007
    @sreenivasan007 ปีที่แล้ว

    congratulations for 400k subscriber

  • @masssurya5262
    @masssurya5262 ปีที่แล้ว +4

    Sir inda python la neenga upload panna 27 videos and inda series sa mudichita learn pannita namma resume la python developer nu add pannikalama sir certificate ilama pls tell me

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

      SKILL is more important than a Certificate.

  • @yogagandhi5479
    @yogagandhi5479 8 หลายเดือนก่อน

    for i in range(1,6):
    print(i*2)

  • @mackdineshvlogs6266
    @mackdineshvlogs6266 9 หลายเดือนก่อน

    Bro count arambikumbothu 3rd question sollama, directa count kulla poiringa nu nenaikuren ,konjam confuse aguthu.kindly mention the timing for 3rd question in count,Na scroll panni pathen enaku neenga question 3 vanthu sollama aramuchamari theriuthu.

  • @trustyourself7465
    @trustyourself7465 ปีที่แล้ว +1

    Bro,
    Count=0
    For i in range(1,5):
    if(i%2==0): ithula 2 & 4 kidaikum
    count=count+1 (ipdi kukum pothu count kitta ippo 2&4 aathavathu count kitta ippo 2numbers iruku appo, count=2+1 appo nammaku ans 3 thaana bro varanum)

    • @ErrorMakesClever
      @ErrorMakesClever  ปีที่แล้ว +4

      When i=2=> Count=count+1 (count=0+1) Now count value is 1
      When i=4=> count=count+1 (count =1+1)
      Now count value is 2
      Count =2 nu print agum.

  • @devilsonsfreefire544
    @devilsonsfreefire544 ปีที่แล้ว

    Bro you're really a good tutor
    I need solidity programming make it brother
    Blockchain technology yae solli kudunga

  • @R.A.G.U.L
    @R.A.G.U.L ปีที่แล้ว +5

    @ErrorMakesClever bro is this correct?Please tell
    '''Count the number of odd and even number between 1 and 10 and print it'''
    count = 0
    count1 = 0
    for i in range(1,11):
    if i % 2 == 0:
    count = count + 1
    if i % 2 != 0:
    count1 = count1 + 1
    print("Even =",count)
    print("Odd =",count1)

    • @anbuakanbuak3294
      @anbuakanbuak3294 ปีที่แล้ว +1

      Thank you bro ..na rampanerama etha try pannuna apm unga message paththu , podda answer vanthuruchi tq

    • @R.A.G.U.L
      @R.A.G.U.L ปีที่แล้ว

      @@anbuakanbuak3294 My pleasure😃

  • @nabelas1393
    @nabelas1393 ปีที่แล้ว +1

    Hi bro. In the above video time: 24.37 - you mentioned like range(1,5) - In this case - it will take 1,2,3,4 but how you included 5. please explain.

  • @sundaramoorthymonishkanna
    @sundaramoorthymonishkanna 8 หลายเดือนก่อน

    Bro pls put some video about blockchain technology in detail

  • @androidwarriorstamil8313
    @androidwarriorstamil8313 ปีที่แล้ว +2

    Bro web developing full tutorial podunga javascript and react js .

  • @SurendranS-j1g
    @SurendranS-j1g 10 หลายเดือนก่อน

    Anna str concatenate thana bro
    Aprom yapadi for la use pannuriga
    Online compiler error kattuthu bro

  • @Manikandan_2710
    @Manikandan_2710 ปีที่แล้ว

    for i in range(1,6):
    print(i*2)
    "(For question No 2)"

    • @ramyadh
      @ramyadh 11 หลายเดือนก่อน

      Wrong method

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

    Anna epadi forloop la odd numbers mattum print pandradhu?

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

    Why did'nt you mentioned we can use ""else"" and ""if"" statement in ""for"" loop in the beginning of every exercise??. It made us so confused

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

    even_count=0
    odd_count=0
    for i in range (1,11):
    if i%2==0 :
    print(i)
    even_count= even_count+1
    print ("total even numbers:", even_count)
    for i in range (1,11):
    if i%2 != 0 :
    print(i)
    odd_count= odd_count+1
    print ("total odd numbers:", odd_count)

    IDHA KANDUPUDIKARARDHUKULLA URIYAE POIDUCHU

  • @HasanAli-en7wi
    @HasanAli-en7wi 6 หลายเดือนก่อน

    Please note that when u say count the even numbers between 1 and 10, the actual answer is 4 as 10 is not included. So when you code
    You have to code like:
    for i in range(1,10)
    You should not code like:
    for i in range(1,11)

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

      Cound=0
      For i in range (1,5):
      If(i%2==0):
      Cound=cound+1
      If(i%2):
      Cound=cound+1
      Print(cound)
      Print(cound)

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

      Do you get the output correct??​@@johndirose1687

  • @E-Hariharan
    @E-Hariharan 3 หลายเดือนก่อน

    a=1
    b=101
    i=0
    f_count=0
    for i in range(a,b):
    if i%3==0:
    print(i)
    if i%5==0:
    f_count=f_count+1
    print(f_count)
    for th above code i got answers 100 and 21 i don know what happens in i%5 part b'caz i change only i%3 part out the output of i%5 part is giving wrong answer can you explain why?

  • @sivakumarsubramani562
    @sivakumarsubramani562 ปีที่แล้ว

    div_count=0
    not_div_count=0
    a=int(input("entre the value of a:"))
    b=int(input("entre the value of b:"))
    for i in range(a,b):
    if(i%3==0 and i%5==0):
    div_count=div_count+1
    else:
    not_div_count=not_div_count+1
    print("Not divisible by both 3 and 5:", not_div_count)
    print("divisible by both 3 and 5:", div_count)
    a=1; b=101

  • @seethalakshmi9504
    @seethalakshmi9504 ปีที่แล้ว

    Super bro 🎉

  • @ABDURRAHUMANM22ITL001
    @ABDURRAHUMANM22ITL001 8 หลายเดือนก่อน

    anna odd even count edukura mari user input kuduthu odd even count edukanum ena na pannanum

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

    For loop example ❤

  • @Gojohatake-rz5ko
    @Gojohatake-rz5ko 9 หลายเดือนก่อน

    bro 'print' ku tab space kudutha if ku ulla poguthu,tab kudukalena if vittu exit agiudhu😮

  • @user-lz8mq4wt1l
    @user-lz8mq4wt1l ปีที่แล้ว

    Bro python ellama cover pannunga brother

  • @Msdhoniand
    @Msdhoniand ปีที่แล้ว

    Hi numpy pandas scipy ku video podunga

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

    Boro count value puriya matikuthu..😢

  • @menonnmegavarshan6653
    @menonnmegavarshan6653 ปีที่แล้ว +1

    Bro 3rd que ku odd la syntax mattum epdinu sollunga

  • @samriinfra
    @samriinfra ปีที่แล้ว

    question 5 oda program correct ah bro

  • @MariappanKulasekaran-qg8pu
    @MariappanKulasekaran-qg8pu ปีที่แล้ว

    Thanks ❤

  • @thennarasu..official8503
    @thennarasu..official8503 ปีที่แล้ว

    Tnx brow basic explain

  • @nirmal_kumar_143
    @nirmal_kumar_143 ปีที่แล้ว

    Count kandu pudika len method use pana mudiyuma bro loop la 🤔

    • @ErrorMakesClever
      @ErrorMakesClever  ปีที่แล้ว +1

      Oru string oda length or list oda length kandupudika use panlam bro. Namma problemsla use pana mudiadhu.

    • @nirmal_kumar_143
      @nirmal_kumar_143 ปีที่แล้ว

      @@ErrorMakesClever ohhh ok ok Bro... Thank you .

  • @Zenin_0X
    @Zenin_0X ปีที่แล้ว +1

    Prime number epdi kandu pudikurathu

  • @DineshKumarT
    @DineshKumarT ปีที่แล้ว

    What will happen ,if I give count i statement

  • @lathikaeswari820
    @lathikaeswari820 ปีที่แล้ว

    Anna 2nd yr bsc.cs padikuran ethavathu internship erundha sollunga na

  • @Goldencupid777
    @Goldencupid777 ปีที่แล้ว +1

    Bro count = 0
    Conut =count+1 na
    0=0+1 thana varu
    illa equalt ku munnadi irukura conut variable na
    Conut =0
    a = count+1
    Print(a) ipdi kudukalama?

    • @ErrorMakesClever
      @ErrorMakesClever  ปีที่แล้ว

      Count = nu podrapa adhu variableah dhan bro consider panikum. And neenga solra mari a=count+1 nu podalam. Apo neenga a=0 nu assign pananum first.

    • @Goldencupid777
      @Goldencupid777 ปีที่แล้ว

      @@ErrorMakesClever ok bro 👍😊

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

    Bro enaku count layee 1,2,3,4,5 nu output varuthu broo

  • @afsarthambi8781
    @afsarthambi8781 ปีที่แล้ว

    Bro unga video pathu learn panna future la enaku job kedaikuma

  • @iamasharetrader8729
    @iamasharetrader8729 ปีที่แล้ว

    Bro last problem la......entha number lam divide aguthu nu paaka mudium uh ?

    • @rabina3003
      @rabina3003 ปีที่แล้ว

      After if statement Print(i) kudunga varum

  • @mithraiyyappan263
    @mithraiyyappan263 ปีที่แล้ว

    Bro what is the meaning qnd use of in

  • @imranyt7991
    @imranyt7991 ปีที่แล้ว

    Broo naa C++ language padichitu irukan bro ippotha intha nerathulaye unga tutorial paathu naa python nu padikalam laa illa venam ah bro

    • @ErrorMakesClever
      @ErrorMakesClever  ปีที่แล้ว

      Confuse panikadheenga bro, edhavdhu onnula concentrate panunga podhum.

  • @shakespearea6500
    @shakespearea6500 10 หลายเดือนก่อน

    Y we cant use step (1,11,2)

  • @kabirahamed5601
    @kabirahamed5601 ปีที่แล้ว

    Anna nan 10th finish pannitu mechanical engineering mudichtan ippo it field la work panunna python course padicha matum podhuma anna😢pls na reply. Illa na Be csc finish pananuma🧐

    • @ErrorMakesClever
      @ErrorMakesClever  ปีที่แล้ว +2

      Pythonla strong aitu adhu reltedah projects irndha u can start applying for jobs bro.

    • @kabirahamed5601
      @kabirahamed5601 ปีที่แล้ว

      @@ErrorMakesClever appo BE CSC panna teva illa ya anna

    • @ErrorMakesClever
      @ErrorMakesClever  ปีที่แล้ว +1

      @@kabirahamed5601 BE already Mechanicala engg mudichteenga dhana ? Andha degreey podhum bro.

    • @kabirahamed5601
      @kabirahamed5601 ปีที่แล้ว

      @@ErrorMakesClever illa na only diploma matum mudichirukan BE PADIKALA

    • @ErrorMakesClever
      @ErrorMakesClever  ปีที่แล้ว +2

      Nerya companies Degree edhirpapanga bro. But some start up companies won’t expect. Neenga slill devwlop panni andha mari companieskula poita aprm endha companiesku venalum shift agika mudium.

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

    Bro our doubt

  • @abinayaarivuchelvam
    @abinayaarivuchelvam 11 หลายเดือนก่อน

    Anna certificate irukka anna

    • @saran381
      @saran381 11 หลายเดือนก่อน

      😂😂

  • @nenjampesutheismath5188
    @nenjampesutheismath5188 10 หลายเดือนก่อน

    ஹாய் ப்ரோ
    உங்க வீடியோ பாத்து தான் கத்திகிட்டேன்
    இதே லூப் வீடியோக்கு எப்டியெல்லாம் எழுதாலாம்னு நான் முயற்சி பண்ணத பாருங்க ஓகே வும் ஆகுது
    a=int(input("Enter A:"))
    b=int(input("Enter B:"))
    for i in range(a,b):
    print(i)
    E_count=0
    O_count=0
    for i in range(a,b):
    if(i%2==0):
    E_count=E_count+1
    O_count=O_count+1
    print("Even Number=",E_count)
    print("Odd Number=",O_count)
    Enter A:1
    Enter B:11
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    Even Number= 5
    Odd Number= 5
    [Program finished]

  • @SATHISHKUMARM-g6r
    @SATHISHKUMARM-g6r 4 หลายเดือนก่อน

    for i in range(1,6):
    print(i*2)