Program in Python to replace all vowels in a string with * | Python Program to replace vowels with *

preview_player
Показать описание
Program in Python to replace all vowels in a string with * | Python Program to replace vowels with *

Join this channel to get access to perks:

Click on this link to visit the online store to buy the customised products.

Special Scheme of Assessment for Board Examination Classes X and XII for the Session 2021-22

Functions in Python

Using Python Libraries:

Data Structures: Stack and Queue

File Handling:

Recursion

Idea of Algorithmic Efficiency

Interface Python with MYSQL:

MYSQL

Computer Networks:

Programming Corner:

Output Based Questions:

Boolean Algebra

Basics of Python

Flow of Control

String Manipulation

List Manipulation

Dictionaries

Python Modules

Sorting
Рекомендации по теме
Комментарии
Автор

You're brialliant, (A marvellous Tutor)

arindamhalder
Автор

Thank you didi for clearing my doubts!!👍😃

TusharSharma-hpem
Автор

Thank u mam keep uploading this type of videos if today ur subscribers are less no doubt tomorrow u will be at the top

sardarji
Автор

So good the way of teaching you are delivering. There are so many python videos but yours is the best one. Because it's feeling like each and every thing u r explaining there. So students will understand various way of coding. Thank you. ❤️

soubhaginimohapatra
Автор

Mam isme replace function use kr skte h??

anshu.saini
Автор

TQ so much mam...i appreciate your hardworking...

harisankarsahoo
Автор

Can it be done like this :
Str= input ("enter the string")
Str1="aeiouAEIOU"
for i in Str1:
Str=Str.replace(i, "*")
print(str)

farhaasghar
Автор

print("best explaination ever")

zhnyt
Автор

can u tell me whether this is an user-defined function

mohitmusic
Автор

Mam python code to accept few words in a tuple and display each words after deleting the vowels

Rose-re
Автор

Hi mam... the end function is not working would u pls let me know whts wrong

Jane-dhh
Автор

Mam, how can we do it by using the replace function?

anushkasinha
Автор

Very amazing and interesting code in python programing thanks for all uploading.

kundankumar-tjte
Автор

s=input("com")
for char in s:
if char in 'aeiou':
print('*', end='')
else :
print(char, end='')

I have tried this but not getting the output

umangsrivastava