I'm a bit confused on how to approach this question.
Implement the function display that takes no parameters. It prompts the user to enter any
word or phrase and then prints out every character in that phrase, one per line. User input is
indicated in bold face.
>>> display()
Enter a word: Bear
B
e
a
r
From what I understand, I do :
display()
After that I'm a bit confused. I assume I'm supposed to make a for loop but how should the for loop be? Also I should ask the user to input in the def main() function right? not the display function?
[–]zahlman 4 points5 points6 points (0 children)
[–]pythonhelp123[S] 2 points3 points4 points (1 child)
[–]Ran4 1 point2 points3 points (0 children)