python學習足跡(2)

來源:互聯網
上載者:User

1,Python中的資料類型。
NoneType, TypeType(自訂類型), IntType, LongType, FloatType, ComplexType(複數), StringType, UnicodeType,TupleType, ListType, DictType, FunctionType

LongType在python中是沒有長度限制的,這個也是script的優點。

2,filter(), map(), reduce()
filter(function, list) return list. 篩選規律是 function = true Example:
>>>def f(x): return x %2 != 0
...
filter(f, range(2,10) ), 結果是3,5,7,9

map(function, list), return list, 規律是對list進行運算。
>>> def f(x): return x*x
...
>>> map(f,range(1,10))
[1, 4, 9, 16, 25, 36, 49, 64, 81]

reduce類似進行累加,
>>> def add(x,y): return x+y
...
>>> reduce(add,range(1,11))
55

3,用del來刪除list中的元素:
>>> a=[0,1,2,3,4]
>>> del a[0]
>>> a
[1, 2, 3, 4]
>>> del a[1:3]
>>> a
[1, 4]

4,if ... elif ...else 結構。不是elseif啊。

5,raw_input用來得到使用者的輸入,象Console.ReadLine()
>>> a=raw_input("Your name: ")
Your name: hacker.net
>>> a
'hacker.net'

6, while 迴圈:
while <條件>:
    語句(注意縮排)

7, for 迴圈:
 for var in <list or string>:
   語句(縮排)
>>> for str in "hello,world":
...     print str

>>> l=['a','b','c']
>>> for s in l:
...     print s,
...
a b c

8, try, except:
 try:
   語句
except:
  語句

9,range函數:返回一個list
range(10) = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
range(5,10) = [5, 6, 7, 8, 9]
range(1,10,2) =[1, 3, 5, 7, 9]
range(10,1,-1) = [10, 9, 8, 7, 6, 5, 4, 3, 2]
經常用的遍曆方法,構造一個range
>>> a=['a','b','c']
>>> for i in range(len(a)):
...     print a[i],
...
a b c

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.