Strings in Python

single_quoted_string = 'He said: "Learn Python!" yesterday'

double_quoted_string = "Hello!, It's me"

triple_quoted_string = """Hello!
This is multiline
string that can be used
also as comment"""

triple_quoted_string_with_single_quotes = '''Hello!
this is another
multiline string'''