According to Data Science Topic-4 Comments
# this is a comment
# second line
a = 5 # like this
b = 7
# this is a second comment
print(a+b)
12
comment is very important for programming when you are working in a team.
# this is a comment
# second line
a = 5 # like this
b = 7
# this is a second comment
print(a+b)
12
comment is very important for programming when you are working in a team.
Comments
Post a Comment