Hey,
I’m using a Swedish keyboard on a macbook.
Any idea how I can comment out multiple lines of code at once?
The usual suggestions do not work.
Thanks.
Hey,
I’m using a Swedish keyboard on a macbook.
Any idea how I can comment out multiple lines of code at once?
The usual suggestions do not work.
Thanks.
if you want to know how to make multiple line comments in python, they’re done like this :
"""
This is a multi-line comment with docstrings
print("Hello world")
print("Hello universe")
print("Hello everyone")
"""
Try ⌘⇧7