Question: Write the following Python program: Get a string from the user. If the string has less than 6 characters, issue a warning and keep asking

Write the following Python program:
Get a string from the user.
If the string has less than 6 characters, issue a warning and keep asking until the user gives a proper one.
Chop off the first two and the last two characters, print the remaining ones as a word.
Extract even positioned , etc.) characters from the string and print them as a word.
Remove all 'a's and 'e's from the string; print the rest.
Sample screen output:
Enter string: rome
String must have at least 6 characters!
Enter string: tokyo
String must have at least 6 characters!
Enter string: amsterdam
sterd
mtra
mstrdm
 Write the following Python program: Get a string from the user.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!