Week 6 Discussion PLEASE READ INSTRUCTIONS CAREFULLY
Discussion Topic
Bottom of Form
1) Create a Python program that accepts a string as input. It should analyze some characteristic of that string and display the result of that analysis. Some examples are (YOU CAN PICK ANY EXAMPLE as my friend Sammie VOLO has)
· Finding or counting a certain character, such as a letter, space, tab, etc. in the string.
· Converting the first letter of each word to upper case.
It should also determine if your initials, in any case combination, are inside the string.
The program must use the following:
· string conditions, using the in keyword
· string methods, such as count or find
You cannot use regular expressions. Post your code as an attachment (.py file) and post a screen shot of executing your program on at least one test case. Be sure to choose a program different from any of the programs already posted by your classmates.
2) Reply to another student's post. Modify that student's program by adding another function that counts the number of digits in the string. Post your modified code as an attachment (.py file) and post a screen shot of executing your program on at least one test case. Document the code describing your change. (Reply on Sammie VOLO .py file)