What does it mean to comment out a line in Python?
“Commenting out” a line in Python (or any language for that matter), is essentially removing code without deleting it.
When code is executed, whether it be an interpreter, a runtime, etc, code that is “commented out” will be skipped and not executed.
Thanks-How do I that?
# this is a commented out line