Ask your own question, for FREE!
Computer Science 12 Online
OpenStudy (anonymous):

Python help:

OpenStudy (anonymous):

How would I go about writing a Python program to remove all the vowels from a string? How about capitalizing the first and last letter of a string with multiple words?

OpenStudy (e.mccormick):

To kill the vowels, you could use a regular expression or some similar test to find them and only copy the parts that are not a vowel. Any string in python can be used as an array. So the first letter is str[0} and the last is str[-1]. So you just need to use a method to find what the capitals are and replace the respective postilions.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!