核心差异概览特性Python2Python3说明print语句print"Hello,World!"(是语句)print("Hello,World!")(是函数)Python3将print变成了一个内置函数,必须使用...