Ask Question
4 February, 10:27

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!").

+1
Answers (1)
  1. 4 February, 11:43
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers