0
How do I do this?
How do I make print ("insert something") print each string at a time?
4 Answers
+ 2
For loop. They work like this.
for element in iterable:
doThing(element)
You put the strings in an iterable like a list or a tuple.
If you just want to print multiple lines, though, you might just add \n escape sequences to the string.
+ 2
if you want each word, you can use split()
+ 1
Blu Clark you mean to print each character of a string one at a time, right; you can achieve this using a loop with a delay.
0
Do you mean a list of strings or a line for each character ?