# COMMENTS
SINGLE LINE COMMENT
Comments are descriptions that help programmers better than understand the internet and functionality of the program. Single line comments starts with a hashtag # followed by your comment.for example
# printing a message
print("I like to code")
You can add more than one single comment for the same instruction or code. for example:
#print a message
# print a message 'I am learning to python'
print("i am learning to python")
souce code
# write a comment above the print() command
# command help us to understand code
print("You have leanined about single lline comments in this section.")
Comments