1quot15 = '''Here are fifteen quotation marks: """""""""""""""''' 2 3apos15 = '''Here are fifteen apostrophes: '''''''''''''''''' # INVALID 4apos15 = "Here are fifteen apostrophes: '''''''''''''''" 5 6# 'That,' she said, 'is still pointless.' 7str = ''''That,' she said, 'is still pointless.''''