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 question5 #122

Open utterances-bot opened 4 years ago

utterances-bot commented 4 years ago

Python debugging part1 debugging question5

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

ghost commented 4 years ago

mangoes = 5

manGoes = mangoes + 5 print (manGoes / 5) 2

HrithikArya commented 4 years ago

that's a little bit focusing stuff, when you see the code you notice that their is written mangoes instead of manGoes . you just have have to simply fix that issue.

>>>print(manGoes/5)
2