Ask Question
12 July, 12:14

4. Name and fix the two errors in the following piece of code that is intended to print "Debugging is fun!". print / / ("Debugging is fun!").

+3
Answers (1)
  1. 12 July, 14:48
    0
    print / / ("Debugging is fun!")

    Here the print is a function and / / is a parameter that is used to comment section of the code. Any function call must be followed by argument call, which in case here is commented. So, the bug arises. So the correct code will be:

    print ("Debugging is fun!")
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “4. Name and fix the two errors in the following piece of code that is intended to print "Debugging is fun!". print / / ("Debugging is ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers