Commenting out a block of code

Another way to comment out the block of code, which might work better for you, is by turning it into a string with triple quotes.
If you go to the very beginning of the block of code you want to comment out and type “”" that turns everything from that point onward in your code into a string. Then, you can go to the end of the block you want commented out and put another “”" to signify the end of the string. Since that whole block is now turned into a string, it is effectively commented out of your code. It’s a nice Python trick to know :slight_smile: