68.4k views
5 votes
7.4.7 Spelling Bee Code HS


How do you do this correctly?

7.4.7 Spelling Bee Code HS How do you do this correctly?-example-1
User Birnbaum
by
7.8k points

1 Answer

3 votes

Answer: I believe that your code is correct, you just have a slight syntax error:

The correct code:

word = “Ninja"

print(“Your word is “ + word + ".")

for i in word:

print( i + "!”) #you were missing the pair of ()

User Roslan Amir
by
8.2k points