177k views
5 votes
Amit wants to test only certain parts of a program. What symbol should Amit put at the beginning of the lines of code that he does not want to test?

1 Answer

6 votes

In python, we use # to comment out code. When you put # in front of a line of code, the computer ignores it and continues like normal.

I hope this helps!

User Cbednarski
by
5.9k points