Principally, in programming languages the feedback are used to know the logics of the code which is represented as principle, Description to get an thought concerning the a part of the code.
For single line remark (“#”)
print("helllo,world!) # prints the string "howdy,world!"
For Multi-line feedback(“‘ ’’’)
"""
That is additionally a multi-line remark
utilizing triple double quotes
"""
print("howdy, world!")
Variable is used to retailer a worth. It is usually referred to as as Container.
syntax: variable = worth
a = “python”
Guidelines:
1.Don’t begin with digits (or) symbols .
@123 = “python”❌
123val = “python”❌
2. Beginning Alphabet (or) Underscore
abc = “python”
_abc = “python”
abc12 = “python”
_123 = “python”
3.Case Delicate
if beginning with decrease case full it with decrease case till this system end and similar to higher case.
a=10
print(a)