php 和 python 部分语法区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 和 python 部分语法区别相关的知识,希望对你有一定的参考价值。
heredoc语法
php $a = <<< str 字符串 字符串 str;
python
print("""
字符串
字符串
""")
字符大小写控制
php (strtolower(str),strtoupper(str)) $a = "Hello World"; print(strtolower($a)); python (str.lower(), str.upper()) a = "Hello World"print(a.lower())
以上是关于php 和 python 部分语法区别的主要内容,如果未能解决你的问题,请参考以下文章