美文网首页
Python Day1

Python Day1

作者: 读书的番茄 | 来源:发表于2017-04-27 09:44 被阅读0次

python2.x和3.x

第一个区别

python2.x

    print'python 你好!'

python3.x

    print('python 你好!')

2.x输出无需括号,3.x必须有,否则提示

SyntaxError: Missing parentheses in call to 'print'

第二个区别

3.x里,input替代了raw_input

相关文章

网友评论

      本文标题:Python Day1

      本文链接:https://www.haomeiwen.com/subject/rgsdhttx.html