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!”)