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 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 as and es from the string; print the rest.
Sample screen output:
Enter string: rome
String must have at least characters!
Enter string: tokyo
string must have at least characters!
Enter string: amsterdam
sterd
mtra
mstrdm
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
