day 3# - Comments, Escape Sequences and Print Statement!

* COMMENTS- Comments can be used to explain Python code. Comments can be used to make the code more readable. Comment Statement can not be Execute Comments starts with a # , and python will ignore them. Ex. # this is a comment print ("hey I am a student" ) ex.2 #this is a single line statement input- print("this is a print statement") output- this is a print statement * MULTILINE COMMENTS #It will execute a block of code if a specified condition is true. #If the condition is false then it will execute another block of code. Input- p = 7 if (p > 5): print("p is greater than 5.") else: print("p is not greater than 5.") OUTPU...