Hi ! In multiline strings '#' are removed with the text afterwords, example : P = ''' <b>Web Technologies</b> #this is not a comment and should not be removed ''' will be parsed as: P = ''' <b>Web Technologies</b> '''
Hi !
In multiline strings '#' are removed with the text afterwords,
example :
P = '''
Web Technologies
#this is not a comment and should not be removed
'''
will be parsed as:
P = '''
Web Technologies
'''