Write a python program. Use this program to practice using the following string methods: ● .find() ● .split() ● .join() Your program should have the following functionality: 1. prompts the user to enter a word 2. using that word, first prints out the word where all characters are replaced by “_”’s (there will be an example to better illustrate this below). 3. the program will continue to print the word revealing one character at a time. i.e., The second line printed should print the first character followed by “_”’s representing the rest of the word. 4. The program should end after printing the entire word once. Example: Enter a word: kangaroo ________ k_______ ka______ kan_____ kang____ kanga___ kangar__ kangaro_ kangaroo Note: string slicing uses the following format: string[start:stop]
Write a python
● .find()
● .split()
● .join()
Your program should have the following functionality:
1. prompts the user to enter a word
2. using that word, first prints out the word where all characters are replaced by “_”’s (there will be an example to better illustrate this below).
3. the program will continue to print the word revealing one character at a time. i.e., The second line printed should print the first character followed by “_”’s representing the rest of the word.
4. The program should end after printing the entire word once.
Example: Enter a word: kangaroo
________
k_______
ka______
kan_____
kang____
kanga___
kangar__
kangaro_
kangaroo
Note: string slicing uses the following format: string[start:stop]
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images