课程
/后端开发
/Python
/初识Python
这个是什么问题 和电脑的输入法有关系 吗
2019-06-07
源自:初识Python 2-3
正在回答
print方法的使用有版本的要求
# python2.x print打印不需要圆括号
print 'hello'
# python3.x print打印必须要圆括号,否则会报错Missing parentheses to call 'print'
print ('hello')
print ('hello,world')
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序