heredoc语法
php $a = <<< str 字符串 字符串 str;pythonprint(""" 字符串 字符串""")
字符大小写控制
php (strtolower(str),strtoupper(str)) $a = "Hello World"; print(strtolower($a)); python (str.lower(), str.upper()) a = "Hello World"print(a.lower())