Hats off to you brother for the continuity 🫡🫡👏👏👏🚀🚀🚀🚀🫶🏻🫶🏻
@EngineeringinKannada2 ай бұрын
Thanks!! 🔥
@sanjeevnayak9212 ай бұрын
My morning routine is to watch your one video of python and practice it in the evening after work...
@bhargavimk38542 ай бұрын
#Day 10 Present 😊
@NimmaHuduga-y9e2 ай бұрын
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}")
@HemaSR-hk3ybАй бұрын
Tqsm annaa ❤ Present bro
@tharungowdar78302 ай бұрын
bro plzzz continue the lectures its helpful
@krishnan30062 ай бұрын
💥# 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}")
@sachinrai67782 ай бұрын
Home Work 2: Code sum=0 for i in range(1,11): sum+=(i) print(sum) output: 55
@VarshaGt-k3x2 ай бұрын
This is so intresting
@prajwalm3262 ай бұрын
Present anna ❤
@entireworld.2 ай бұрын
Love you bro! I liked your explanation and learning continuously without deviating. Thanks
@EngineeringinKannada2 ай бұрын
Glad to hear that
@supriths89402 ай бұрын
Present Chandan 💯❤️
@parashualwaysat3811Ай бұрын
awesome teaching
@deekshitha18-92 ай бұрын
Learnt more when solving homework and extra questions
@SangeethaSangeetha-s7m2 ай бұрын
Thank you so much 😊
@NareshKichha-fi4df2 ай бұрын
Sir e class tumba intersting agi ittu 💓🫶❤❤️🔥🙏
@EngineeringinKannada2 ай бұрын
🙌❤️
@Suprith_63632 ай бұрын
Present sir❤❤❤
@krishnan30062 ай бұрын
💥#1. HOMEWORK for i in range(1,31): if i%3==0: print(i)
@googlyappu2 ай бұрын
Thank u so much for the wonderful class ❤, waiting for next class😊
@EngineeringinKannada2 ай бұрын
You are welcome 😊
@sindubanavasi5842 ай бұрын
Present sirr.....😊❤
@kirans17152 ай бұрын
Present guru, late attendance today. Sometimes we write logic in different place
@NimmaHuduga-y9e2 ай бұрын
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)
@kirans17152 ай бұрын
Placing logic code at the right place matters, I need to work on that
@yatharvram2 ай бұрын
Present bhai❤
@karthikgowda-d9p19 күн бұрын
thanks bro
@SushmitaAngadi-pq7zo2 ай бұрын
Present anna😊
@manojhcstd2 ай бұрын
Present 💝 bro
@worldwide3622 ай бұрын
Waiting for ur video❤
@PrajwalBs-nh4nc2 ай бұрын
#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)
@krishnan30062 ай бұрын
💥# 3.HOMEWORK name=input("Enter your Name: ") for i in name: print(i)
@Kaviraj-i6j2 ай бұрын
for i in range(1,100,2): print (f"i 🥹{i},end=""") while i
@rahuln48042 ай бұрын
day 10 done
@RameshaShimoga2 ай бұрын
Present ❤
@anthonymary1cyril5Ай бұрын
books=["comic","fiction","science","art","math"] for Box in books: print(Box)
@ragvendrabgowda2 ай бұрын
#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)
@bhanupriyal-z3rАй бұрын
# 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)
@aryakg15042 ай бұрын
Present bro ❤
@AkshayRaj47122 ай бұрын
Super bro
@JyothiJyothimc-i9u2 ай бұрын
Day 10❤🥳
@mallikarjunareddyp38862 ай бұрын
Present Anna 💝
@abhisheks59642 ай бұрын
Present sir ❤
@preetishebannavar34642 ай бұрын
Day 10🎉
@krishnan30062 ай бұрын
💥# 2.HOMEWORK for i in range(1,11): print(f"Sum of 1 to {i} are:{i+i}")
@kirans17152 ай бұрын
@@krishnan3006 i=೦ For l in range(1, 11) i+=l Print (i) This is my logic
@krishnan30062 ай бұрын
@@kirans1715 👍♥️
@bhuvaneshbhuni53832 ай бұрын
Broo I really hands of you broo
@EngineeringinKannada2 ай бұрын
🔥🙌
@anushamutagi21312 ай бұрын
Present bro😊
@sathishvs67502 ай бұрын
Hi bro good evening
@Sanjaydevadig5142 ай бұрын
❤🎉
@AnilKumar-dg9tkАй бұрын
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}")
@quotesbyexperience48972 ай бұрын
Present sir 🙋
@AmulyaAmmu-k5z2 ай бұрын
Day 10❤
@VEERESHHIREMATH-dj9ri24 күн бұрын
love you brother
@EngineeringinKannada24 күн бұрын
✌
@Manasa.D-hv6vs2 ай бұрын
Present😊
@Peakpulse_112 ай бұрын
n=2 For i in range (1,11): Print (i*n)
@AnjaneyaNayak-m2k2 ай бұрын
❤❤❤
@sachinrai67782 ай бұрын
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
@MG_Gaming5772 ай бұрын
anna video masth madthi clear agi artha aketh
@EngineeringinKannada2 ай бұрын
Thanks 🙌
@bhushankotabagi71852 ай бұрын
How we can print table by without using formatted string
@KEERTHANAKS-t4e2 ай бұрын
I = "10th day present bro" print(i) O/P: 10th day present bro
@ravindrakyadiggeri26652 ай бұрын
Bro among B. E and BCA which one is better
@gogeearth86822 ай бұрын
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
@ChethanDILEEP2 ай бұрын
Bro formatted string na yav time nali use madbeku bro
@sampath53932 ай бұрын
❤🙌
@LavaKumar-ro7cb2 ай бұрын
Present Sir
@NimmaHuduga-y9e2 ай бұрын
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}")
@sachinrai67782 ай бұрын
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
@akashpartha26422 ай бұрын
Wating bro day 10 present
@NimmaHuduga-y9e2 ай бұрын
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)
@chtxxx80552 ай бұрын
2nd year roadmap please
@parvatibparub30202 ай бұрын
Bro how to print "×"(multiply symbol) in computer
@ManjuManjunathaGP2 ай бұрын
Brother please say in which app we can use this python for studying in mobile only
@Urgeyv2 ай бұрын
Sjce good for cs?
@EngineeringinKannada2 ай бұрын
Yeah
@Urgeyv2 ай бұрын
@@EngineeringinKannada cse in sjce or aiml in BMS which is better
@sachinrai67782 ай бұрын
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
@SavitaG-p2r2 ай бұрын
Present sir
@KishanS-r7h2 ай бұрын
Bro I am unable to get the output of the 3rd homework.can anyone give the code...
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
@EngineeringinKannada2 ай бұрын
Check instagram reel
@Shruti20282 ай бұрын
Present brother
@Dhanush677542 ай бұрын
Hi bro, neevy complete Python heli kodteera, navu job ge yava step alli appply madabahudu