words = ["hello", "world", "spam", "eggs"] for word in words: print(word + "!") | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

words = ["hello", "world", "spam", "eggs"] for word in words: print(word + "!")

i dont understand this code

10th Jun 2019, 11:37 AM
Ranjeet singh jitty
Ranjeet singh jitty - avatar
1 Answer
+ 7
Maybe you'll understand it if you read it like a sentence: Create a list of words that contains hello, world, spam, and eggs. for each word in the list of words: output the word and add an exclamation mark at the end Hope that helps.
10th Jun 2019, 12:07 PM
Cluck'n'Coder
Cluck'n'Coder - avatar