Comment and Escape Sequence
# Comments, Escape Sequence
# Comments
# '#' is used for single line comment
"""
we can use three double inverted comma to comment multiple lines
"""
# Esacape Sequence
"""
\n is used for new line
end="" is used to specify what to print at last. Default for end="" is \n
sep="" is used to seperate items with perticular char. Default is 'space'
"""
print("Hey","Kemon","Acho",sep="~")
print("#",end=" 007")
Comments
Post a Comment