Comments are portions of a computer program that are used to describe a piece of code. For example,
# declare variable
age = 24
# print variable
print(age)
Here, # declare variable and # print variable are two comments used in the code.
Comments…
Continue reading: R …