问题:
print "hello" SyntaxError: Missing parentheses in call to 'print'
解决:
python3取消了这种用法。使用 print('hello"),这种来输出。
python3 语法 和 python2 已经变得有些差别了。
python3中,去除了print语句,加入print()函数实现相同的功能。
备注:parentheses :parenthesis的名词复数, 圆括号,插入语,插曲;
问题:
print "hello" SyntaxError: Missing parentheses in call to 'print'
解决:
python3取消了这种用法。使用 print('hello"),这种来输出。
python3 语法 和 python2 已经变得有些差别了。
python3中,去除了print语句,加入print()函数实现相同的功能。
备注:parentheses :parenthesis的名词复数, 圆括号,插入语,插曲;