0
fill in the blanks to create a valid for loop
unable to solve this question what they exactly want fill in the blanks to create a valid for loop: text = "some text goes here" ___x__text__ print(x)
4 Respuestas
+ 4
Review the lesson before the actual question.
It has the exact same example code in the "Try yourself" block (with different variable names).
You just need to fill the correct syntax of a "for" statement.
+ 3
This should be the correct answer though, it works for me on the same question.
+ 1
for x in text :
print(x)
i have tried this answer but it's incorrect
0
fill in the blanks to create an empty class called bot