Awesome bro....by your voice I think u r smaller than me, i am in 10th std...but in learning u r my guru 👊😎
@shyamkumar.y.c11 ай бұрын
Bro its sis not bro:V
@bollemhemanth36303 жыл бұрын
Your explanation with such magical voice is awesome mam
@AmulsAcademy3 жыл бұрын
Thank you :)
@baravind65484 жыл бұрын
it was not clear even in google,but u made i clear tq so much mam
@muhammadnajamulislam28235 жыл бұрын
you can use list comprehension z = [char for char in string if char in vowels ] count +=1 print("Vowels:",len(z)).
@namanverma67452 жыл бұрын
no need for count+=1
@zainulaabdeen38934 жыл бұрын
it can be also this program given_string=input("ENTER A STRING") given_string=given_string.lower() a=given_string.count('a') e=given_string.count('e') i=given_string.count('i') o=given_string.count('o') u=given_string.count('u') count=a+e+i+o+u print("NUMBER OF VOWELS IN THE STRING IS: %d "%count)
@saiakhilganjai3258 Жыл бұрын
lovely explanation amulya
@nomotmo4 жыл бұрын
Thank you for the clear explanation!
@AmulsAcademy4 жыл бұрын
Welcome :)
@hyd_explorer_3602 жыл бұрын
vere level madam...... explaination is awesome
@Narendrakumar-kn8ns5 жыл бұрын
Really very... Easy n understandable coding
@AmulsAcademy5 жыл бұрын
Thank you :)
@samuelabera8262 Жыл бұрын
really exciting description thanks
@fc19114 жыл бұрын
Awesome explanation. Thank you 🙏🏼
@AmulsAcademy4 жыл бұрын
Glad it was helpful! :)
@officialvinay12326 ай бұрын
Great explanation ❤
@ambadaschankhore27144 жыл бұрын
Thanks for making this videos ....another one is can you upload the videos in Quadratic Equation.
@AmulsAcademy4 жыл бұрын
I will try :)
@ambadaschankhore27144 жыл бұрын
@@AmulsAcademy Sure Pls
@HarshitaChattopadhyay5 жыл бұрын
Thanks a lot... Awesome explanation
@AmulsAcademy5 жыл бұрын
Thank you :)
@uppulurirajesh11013 жыл бұрын
Welcome
@rajeshs28405 жыл бұрын
sentence = list(input("Enter the String")) print("Number of Vowels in Given strign is:",len([ i for i in sentence if i in "aeiouAEIOU"]))
@thebongsuperstyller84654 жыл бұрын
It's really helpful,more strings program want,many many thanks
@AmulsAcademy4 жыл бұрын
You are welcome!
@shyamyadla35154 жыл бұрын
s=input("Enter string:") vowels=0 for i in s: if(i=='a' or i=='e' or i=='i' or i=='o' or i=='u' or i=='A' or i=='E' or i=='I' or i=='O' or i=='U'): vowels=vowels+1 print("Number of vowels are:",end=' ') print(vowels) For both upper and lower case letters.
@manuchowdary78484 жыл бұрын
mam nyc tutorial please make a videos on complex programs
@surajagasti23094 жыл бұрын
are you going to continue with statistics for analysis??
@Andrew_EvsW2 жыл бұрын
Hello Amulya can you please make python interview questions ? Thank you!
@manish666_4 жыл бұрын
THANK YOU SO MUCH
@AmulsAcademy4 жыл бұрын
Most welcome :)
@azmatali4589 Жыл бұрын
Awesome 👍🏻
@anusmitasamanta26085 жыл бұрын
tysm ....helpful one
@whitedevil63615 жыл бұрын
sentence=input().lower() vowels="aeiou" flag=False for char in vowels: if char in sentence: print("vowels",char, sentence.count(char)) flag=True if not flag: print ("There are no vowels", format (sentance))
@raghavendraam719 Жыл бұрын
nice brother. its showing how many times each vowels are repeated.
@m4nu3lex3 жыл бұрын
Awesome video! Could you please show how to write a Python function that takes a sequence of integer values and determines if their product is odd?
@Yash.Berwal3 жыл бұрын
hi i m learning coding from toppr codr
@MrDipankar20092 жыл бұрын
It can be done using the list comprehension. L1 =[1,2,...........] L2=[X for X in L1 if X/2!=0] print(L2)
@priyadarshinihazari30079 ай бұрын
Thank you ❤
@vastavlegend46543 жыл бұрын
please do for consonants also
@AmulsAcademy3 жыл бұрын
Noted 😊
@cloqm42334 жыл бұрын
sentence = input ("enter the sentence:") string = sentence.lower () print (string) count = 0 list1 = ["a" , "e ," "i" , "o" , "u"] for char in string: if char in list1 : count = count+1 print("number of vowels in given sentence is:" ,count)
@naveenkareria67594 жыл бұрын
If we want to print vowels and consonants at the same time??
@archanakirasoi21035 жыл бұрын
Thank you
@AmulsAcademy5 жыл бұрын
Welcome :)
@harish9950 Жыл бұрын
good explanation tq
@shyamyadla35154 жыл бұрын
How to print vowels also
@riteshmodanwall14465 жыл бұрын
Thanks for it. Plz make video to shift all the zeros to right side? Plz
@omsrisaikrishna96185 жыл бұрын
Can you say that debugging in this program
@baderalrahamneh86715 жыл бұрын
Awesome,🤸
@rijofrancis98074 жыл бұрын
class will awesome
@vishalbhatiya15392 жыл бұрын
And what if the find the two non repeated vowels in a given string
@manikantamani92154 жыл бұрын
I got this in tcs NQT 2020
@AmulsAcademy4 жыл бұрын
Thank for informing :)
@tapasrakshit62494 жыл бұрын
is any other way to count number of word present in a paragraph, or number of repetition occur for a particular word in a paragraph, if so please upload it
@sumanthreddy22915 жыл бұрын
Super mam
@swaroopasivakumar66004 жыл бұрын
i want few pattern format helpme
@AmulsAcademy4 жыл бұрын
Sure : )
@arzushahverdi2 жыл бұрын
How can I write code to delete the elements that make up the array from the given word? For example: word = "sadness" list1 = ['ful', 'ness', 'ly'] and print "sad". How ?
@hasintaihan62093 жыл бұрын
Thank you from your video its easy my professor shows nothing and tells us to do the work I hate my shitty ass professor
@Parafaldu2 жыл бұрын
Define a function which checks all vowels are in the given string? it tells if any vowels are missing.
@tulasimannepalli69444 жыл бұрын
Can u please tell me how to create checkbox with counting selection check boxes???
@TrinitaMandal14 күн бұрын
thanks sm
@Rohit_foodvlogs Жыл бұрын
Nice mam
@shahzaibkhan76524 жыл бұрын
1:30 you can also just put in .lower() and that puts the string input into lower case letter
@kabeerbasha3264 жыл бұрын
how to find vowels in given list example, l1 = ['sachin','ramesh','sehwag']
@AmulsAcademy4 жыл бұрын
Try this: l1 = ["sachin","ramesh","sehwag"] l2 = ["a","e","i","o","u"] count=0 for i in l1: for j in i: if j in l2: count = count+1 print(count) :)
@saikatmandal2009 Жыл бұрын
word = input("enter a word:") vowels = {"a", "e", "i", "o", "u"} results = {} for c in word: if c in vowels: results[c] = results.get(c, 0)+1 for k,v in results.items(): print(k,"is present",v,"times")
@soundaryats83212 жыл бұрын
string = "soundarya" print(string) count = 0 list = ["a","e","i","o","u"] for char in string: if char in list: count=count+1 print(count)
@cerenletonyada3 жыл бұрын
short and easy to understand thanks
@AmulsAcademy3 жыл бұрын
Glad to hear that 😊
@escapefelicity29133 жыл бұрын
It might be a REAL GOOD IDEA to post the code
@ajitbhapkar094 жыл бұрын
How I can use count function
@nancyj30425 жыл бұрын
Hi ammu after long time.....hope doing well.
@athu36233 жыл бұрын
?
@veeratejeswarreddy2368 Жыл бұрын
a=input('enter the char:').lower() vowel='aeiou' count=0 for i in a: if i in vowel: count+=1 print('no of vowels:',count)
@un94445 жыл бұрын
How to use in define function
@godlessgemer_6877 Жыл бұрын
Tq mam
@jimmymesa5 жыл бұрын
sentence = input("Enter the sentence: ") string = sentence.lower() count = 0 vowels = "aeiou" for char in string: if char in vowels: count += 1 print("Number of vowels in given sentence is: ", count)
@jimmymesa5 жыл бұрын
sentence = input("Enter the sentence: ") count = 0 vowels = "aeiouAEIOU" for char in sentence: if char in vowels: count += 1 print("Number of vowels in given sentence is: ", count)
@jimmymesa5 жыл бұрын
sentence = input("Enter the sentence: ") count = len(list(filter(lambda x: x in "aeiouAEIOU", sentence))) print("Number of vowels in given sentence is: ", count)
@jimmymesa5 жыл бұрын
sentence = input("Enter the sentence: ") count = sum([1 for char in sentence if char in 'AEIOUaeiou']) print("Number of vowels in given sentence is: ", count)
@loargaming4016 Жыл бұрын
def vccount(sent): a=sent.lower() l1=['a','e','i','o','u'] c=0 v=0 for i in range(len(a)): if a[i] in l1: v=v+1 else: c=c+1 print(f"vowels:{v} consonents:{c}") return 0 a=input() vccount(a)
@dipyamandas43334 жыл бұрын
the output should be the only words which got 2 vowels in them
@Akashgupta-ly5wm3 жыл бұрын
How to count vovels by creating list in python
@DK-js8cz3 жыл бұрын
How to remove vowels in a sentence?
@harishkumar21575 жыл бұрын
Why we are using ( ,count) in print step...that is located in last step ... Please can anyone explain. ??
@santhoshreddy64723 жыл бұрын
We r writing some message after the mesg we r giving ,count if u want u can ignore that mesg in print statement and simply give count without ,
@sktalkiessj2 жыл бұрын
LOOP or range ko clearly smjha dijiye pllz
@jaswanthjaswanth93664 ай бұрын
🎉❤
@pranshujain91743 жыл бұрын
b="u can take input also i took my own string" c=0 for i in b: if i in "aeiouAEIOU": c=c+1 print(c) although i think its almost same thing
@geethamadhuri31852 жыл бұрын
please same vowels in functions topic code mam
@syedafroze6824 жыл бұрын
Hi! How to find the sum of indexes of vowels in a string? Plz help 🙏
@prathameshgurao75413 жыл бұрын
x = input("Enter statement: ") v=0 for vowel in "aeiou": If vowel in x: v+=1 Print(vowel) Print ("the no of vowel in statement are :",v)
@un94445 жыл бұрын
Function defind kar ke vowels or consonants ka program kaise kare
@AmulsAcademy5 жыл бұрын
Put vowel count code in the function and call that :)
@un94445 жыл бұрын
@@AmulsAcademy very nice but I want use function like Def vowelscheck( user_input) : : Like this
@ashu600715 жыл бұрын
distinct characters substring python
@general_prodigy5 жыл бұрын
ovals? I think you mean vowels?
@swaroopasivakumar66004 жыл бұрын
pl help me out to do pattern like 0 1 1 2 3 5 8 13 21 34 Q2. 1 1 3 1 1 3 5 1 1 3 5 7 1 pl do the needful
@gauravsahu68315 жыл бұрын
How to remove the vowels from the string
@rajeshs28405 жыл бұрын
sentence = list(input("Enter the String")) print("sentence with vowels removed","".join([ i for i in sentence if i not in "aeiouAEIOU"]))
@sobanosilva85854 жыл бұрын
any English captions available?
@Narendrakumar-kn8ns5 жыл бұрын
🙏🙏🙏🙏🙏🙏
@mohanmechanical19663 жыл бұрын
How to solve this ? List Comprehensions Description Extract the words that start with a vowel from a list input_list=[wood, old, apple, big. item, euphoria) using list comprehensions. Sample Input: ['wood','old','apple','big','item','euphoria'] Sample Output: ['old', 'apple, 'item', 'euphorial']
@AmulsAcademy3 жыл бұрын
Take vowels in a list, take list name as vowels. List2 = [ I for i in input_list if i[0] in vowels]
@greatindian6069 Жыл бұрын
List(map (int,input().sort()))
@ajitbhapkar094 жыл бұрын
Nice voice
@prathameshgurao75413 жыл бұрын
x= take input from user a=0 for i in x: If(i=="a" or i=="e" or i=="I" or i=="o" or i=="u") a+=1 Print("No of vowel is ",x)
@charangoud8783Ай бұрын
s=str(input("enter a string:")) v=0 for char in s: if char in "aeiouAEIOU": v= v+1 print("no.of vowels:",v)
@maassterpiece5 жыл бұрын
Please do in pycharm. Madam
@creatoraviraldwivedi55403 жыл бұрын
Vakvasss kafi lamba program tha
@munishgupta78782 жыл бұрын
does anybody know how to count number of vowels using @classmethod This is your code and now I can't get the answer: class UserMainCode(object): @classmethod def countvowels(cls, input1): # write code after this line only