navgurukul / newton

Includes all our curriculum for all the courses.
https://merakilearn.org/
GNU General Public License v3.0
26 stars 81 forks source link

Python debugging part1 debugging question1 #119

Open utterances-bot opened 4 years ago

utterances-bot commented 4 years ago

Python debugging part1 debugging question1

http://saral.navgurukul.org/api/course?id=18

ghost commented 4 years ago

print("we will learn debugging by removing all the errors from this python file") we will learn debugging by removing all the errors from this python file

HrithikArya commented 4 years ago

hii!!! If you are learning python 2.x then command should be like

print "We will learn debugging by removing all the errors from this python file."

or if you are using python 3.x then it should be

print("We will learn debugging by removing all the errors from this python file.")

you notice that their is a missing double-inverted comma("") at the last which cause you syntax error.