Python3.1和Python2.5的

2023-01-31 02:01:07 python3 python2

1. python2.5中函数调用不需要使用(), 在python3.1中则必须使用():

    如Python 2.5中可以用:print 'Hello world!'

    在Python 3.1中必须改用:print ('Hello world!')

 

2. Python2.5中输入函数可以用raw_input()

    在Python3.1中则只能用input(),删除了raw_input()函数

 

 

相关文章