So kommentieren Sie einen Codeblock in Python aus

In Python kannst du einen Block von Code durch Verwendung des "#" Symbols am Anfang jeder Zeile auskommentieren. Beispiel:

# This is a comment
# print("This line of code will not be executed")
print("This is the main code and will be executed")

Eine andere Möglichkeit, mehrere Zeilen Code auf einmal auszukommentieren, ist die Verwendung von dreifachen Anführungszeichen """. Dies kann sowohl für einzeilige als auch für mehrzeilige Kommentare verwendet werden.

"""
This is a multi-line
comment that can span multiple lines
"""
print("This is the main code")

Alternativ kannst du auch ''' für mehrzeilige Kommentare verwenden.

'''
This is a multi-line
comment that can span multiple lines
'''
print("This is the main code")

Bitte beachte, dass Kommentare keinen Einfluss auf die Ausführung des Codes haben, sie dienen nur zum Verständnis des Codes für menschliche Leser.