# full line comment, 1 line only """ triple quoted comment can span several lines This comment will be used by the help() function in the python interpreter. It is the first triple quoted comment in the file import comments dir() help(comments) """ a = 4 # assign 4 to a, partial line comment print(a) """ Here is another triple quoted multi-line comment but it will not appear in the help """