Rewrite the following code in Python after removing all syntax error(s). Underline each correction done in the code.

STRING = “WELCOME”

NOTE “”

for s in range [0,8]:

print (STRING[s])

print s STRING

 

Answer:

Untitled 25.jpg

Corrected code:

STRING = "WELCOME"  

NOTE =  ""

for s in range ( 0 , 8 )

    print (STRING[s]) 

print (s, STRING)

Ask a doubt
Davneet Singh's photo - Co-founder, Teachoo

Made by

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 14 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.