+ 2
how can i make a comment in paython language ? Is paython language supports one line comments and multi lines comment like ja
2 Respostas
+ 5
# single line comment
"""
Multiline comment.
Used to explain when a single line
won't do
"""
'''
Also a valid
multiline comment
'''
0
It's Python though 😉