>>> width = 20
>>> height = 2 * 3
>>> width * height
120
>>> x = y = z = 0
>>> x
0>>> y
0>>> z
0
變數在使用前,必須定義
>>> n
traceback (most recent call last):
file "", line 1, in nameerror: name 'n' is not defined
對浮點數支援很好
>>> 7.0 / 2
3.5>>> 7 / 2
3
>>> hello = "this is a string\n hello python."
>>> print hello
this is a string
hello python.
>>> hello
'this is a string\n hello python.'
print 可以輸出內容。
字串可以由 + 操作符連線(粘到一起),可以由 * 重複。
>>> word = 'help' + 'a'
>>> word
'helpa'
>>> word * 5
'helpahelpahelpahelpahelpa'
這個厲害了。
>>> word[4]
'a'>>> word[0:2]
'he'
>>> word[2:4]
'lp'
>>> word[:2]
'he'
>>> word[2:]
'lpa'
>>> word[1:100]
'elpa'
>>> word[10:0]
''>>> word[2:1]
''
>>> word[-1]
'a'>>> word[-2]
'p'>>> word[-2:]
'pa'
>>> word[:-2]
'hel'
+---+---+---+---+---+
| h | e | l | p | a |
+---+---+---+---+---+
0 1 2 3 4
-5 -4 -3 -2 -1
>>> s = "hello world"
>>> len(s)
11
>>> u'hello\u0020world !'
u'hello world !'
轉碼序列 \u0020 表示在指定位置插入編碼為 0x0020 的 unicode 字元(空格)。
>>> h = u'hello\u0020world !'
>>> print h
hello world !
>>> h
u'hello world !'
列表
>>> a = ['hello','world',100,20]
>>> a
['hello', 'world', 100, 20]
>>> len(a)
4
>>> a[0]
'hello'
>>> a[3]
20
>>> a[0:2] + ['python',2*2]
['hello', 'world', 'python', 4]
程式設計
>>> a,b = 0,1
>>> a
0>>> b
1>>> while b < 10:
... print b
... a,b = b,a+b
... 11
2358
>>> i = 2 * 2
>>> print 'the value of i is',i
the value of i is 4
學習給我快樂,沒有別的目的。 創業實驗田 有點意思
他是一種病毒營銷的新方式,所有人都可以名費參與,並發展自己的粉比網路。使用者自發的口口相傳,就像病毒一樣,快速的裂變,實現幾何倍數的傳播速度。粉絲的多重性,讓系統中的會員事半功倍,因為會員發展乙個粉絲,整個團隊都會受益。假如每個人發展了十個粉絲,那到兩代會有百人的粉絲團,四代是一萬,六代就是百萬了。...
豆瓣的9點有點意思
豆瓣的9點 url 上了有一段時間了,昨天晚上認真用了用,感覺挺好的。目前確實存在一些站點,可以將不同的blog的資訊組織起來。但是依託於資料分析的豆瓣總可以與眾不同 1 提出套的概念,類似於分類。但是豆瓣的套並非是預製的,而是根據使用者的訂閱選擇由系統生成的。每一套的背後會有乙個數量眾多的擁有相同...
「有點兒意思」的導航設計
導航讓 的層次結構以一種有條理的方式清晰展示,並引導使用者毫不費力地找到並管理資訊。同時,導航位於網頁的中上部分,視覺中心的區域。在保持其合理的功能作用的同時,乙個好的導航設計,是整個網頁設計的點睛之筆!乙個設計師在布局和整體規劃網頁設計時,導航總是乙個重要的元素。我們會思考 導航以什麼形式呈現?是...