#!/usr/bin/python
word=['a','b','c','d','e','f','g']
# 取第二個元素
a=word[2]
print "a is: "+a
# 取第2~3個元素
b=word[1:3]
print "b is: "
print b
# 取前2個元素
c=word[:2]
print "c is: "
print c
# 取所有元素
d=word[0:]
print "d is: "
print d
# 同上
e=word[:2]+word[2:]
print "e is: "
print e
# 取最後乙個元素
f=word[-1]
print "f is: "
print f
# 取倒數第4~3個元素
g=word[-4:-2]
print "g is: "
print g
# 取最後2個元素
h=word[-2:]
print "h is: "
print h
# 取除最後2個元素之外的元素
i=word[:-2]
print "i is: "
print i
# 取其長度
l=len(word)
print "length of word is: "+ str(l)
print "adds new element"
# 追加元素
print word
# 追加(合併)列表
word.extend(['a', 'b'])
print word
輸出第幾個到第幾個素數
if flag 0 counter 發現乙個素數 if flag 0 counter m counter n if counter n break return 0 這題耗費了我將近兩天的時間,各種小細節層出不窮。可能也是因為很久沒有上手的原因,除了很多問題。首先最大的乙個錯誤,就是flag 1 這...
css js 獲取第幾個節點元素
1.1 css3 nth child 選擇器 例項 規定屬於父元素的第二個p的背景色改變 p nth child 2 例項 1.2 css3 nth of type 2 選擇器 p nth of type 2 例項 奇偶數 odd 奇數1.3 css3奇數偶數 even 偶數2.1 父節點 pare...
CSS選取第幾個標籤元素
1 first child 表示選擇列表中的第乙個標籤。p first child 2 last child 表示選擇列表中的最後乙個標籤。p last child 3 nth child 3 表示選擇列表中的第3個標籤。p nth child 3 4 nth child 2n 1 表示選擇列表中的...