little problem

1. Python 2.0版本 : print"Hello, Python!"

    Python 3.0版本 : print("Hello, Python!")

2. Python 2.0版本 :raw_input("\n\nsomething")

    Python 3.0版本 : input("\n\nsomething")

3. dict={'name':'zhang','num':'0908',4:852}  #0908是字符,所以需要‘’,852是数字,不需要‘’

4.c=open("test.txt","r+")    d=c.read(10)

   a+和r+都是读写,但a+是add,指针在字尾,r+是read,指针在字头。所以read时,权限      应为r+才能读出来东西

5.

你可能感兴趣的:(little problem)