REMOVING VOWELS FROM GIVEN STRING IN PYTHON PROGRAMMING || DELETING VOWELS FROM STRING || STRINGS

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ม.ค. 2025

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

  • @ganeshjaggineni4097
    @ganeshjaggineni4097 2 ปีที่แล้ว

    NICE SUPER EXCELLENT MOTIVATED

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

    very nicely explained!

  • @gantahemasankar6942
    @gantahemasankar6942 2 ปีที่แล้ว

    Sir can we do this by using dictionary..... in the same way u explained in frequency of vowels....in that after( if char in vowels) we can write del d[char]....Can i sir??

  • @kiranThalapathy
    @kiranThalapathy 2 ปีที่แล้ว

    THANKS SIR....🙏

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

    Tq sir I understood

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

    Sir im from non IT field degree bsc (mpcs) can i able to work in software, im interested in software field i have watched u r java coaching in 15 hrs and i have researchd some information through Wikipedia is there any necessary of taking coaching in java or else can i go to interviews plzzzz reply to me sir or how can i contact u (Im so depressed without a job ) and iam from small Village. i have skills but im not getting any opportunity to prove myself . And im from a lower middle class family even we dont have a proper house plzzzzzzz help me sir to settle down in my life, and i have two sisters my whole family depends upon me i dont know what to do now ( but i have a excellent communication skills) plzz help me sir plzzzzzzz and thanks for teaching a people like us who cannot take coaching by paying huge amount tq sir and my age is 23 . I got 9.5 in ssc,. 863 in mpc intermediate,. And 7.0 in my graduation, score doesnt matter and skills are more important and im a quick learner

    • @sundeepsaradhi
      @sundeepsaradhi  2 ปีที่แล้ว

      Yes with this you can face interview but need to learn LIBRARIES which are application specific.

  • @bharathyeddula7550
    @bharathyeddula7550 2 ปีที่แล้ว

    Write a program to remove two same adjacent letters like 'ee' in 'cheers' and print 'chrs'

  • @osmchannel5135
    @osmchannel5135 2 ปีที่แล้ว

    sir, what about this?
    It also gives the result without vowel, but in [ ]
    word = input("write your letter here:- ")
    vowel = "aeiouAEIOU"
    result = [i for i in word if i not in vowel]
    print("your word is here", result)