Python_13_Codecademy_13_Advanced Topics in Python

<a href="http://www.jianshu.com/p/54870e9541fc">总目录</a>


课程页面:https://www.codecademy.com/
内容包含课程笔记和自己的扩展折腾


dictionary.items()

d = { 
    "Name": "Guido", 
    "Age": 56, 
    "BDFL": True 
} 
print d.items()

Output:
[('BDFL', True), ('Age', 56), ('Name', 'Guido')]

dict.keys(), dict.values()

Whereas items() returns an array of tuples with each tuple consisting of a key/value pair from the dictionary:

  • The keys() function returns an array of the dictionary's keys, and
  • The values() function returns an array of the dictionary's values.
d = { 
    "Name": "Guido", 
    "Age": 56, 
    "BDFL": True 
} 
print d.keys()
print d.values()

Output:
['BDFL', 'Age', 'Name']
[True, 56, 'Guido']

The 'in' operator

# in and string
for char in "in_operator":
    print char,

# in and list
for num in range(7):
    print num,

# in and dict
d = { 
    "Name": "Guido", 
    "Age": 56, 
    "BDFL": True 
} 
for dict_key in d:
    print dict_key,

Output:
i n _ o p e r a t o r 0 1 2 3 4 5 6 BDFL Age Name

List comprehension: for/in + if

range()可以很快生成lists

But what if we wanted to generate a list according to some logic—for example, a list of all the even numbers from 0 to 50?

list_name = [variable(可编辑)/string for variable in ... if variable ...]

【例1:输出0-50之间的偶数】

even_num = [i for i in range(51) if i % 2 == 0]
print even_num

Output:
[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50]

【例2:输出0-50之间的偶数的平方】

even_num = [i**2 for i in range(51) if i % 2 == 0]
print even_num

Output:
[0, 4, 16, 36, 64, 100, 144, 196, 256, 324, 400, 484, 576, 676, 784, 900, 1024, 1156, 1296, 1444, 1600, 1764, 1936, 2116, 2304, 2500]

【例3:输出0-50之间的偶数个"c"】

even_num = ["c" for i in range(51) if i % 2 == 0]
print even_num

Output:
['c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c']

List slicing syntax

list[start:stop:step]
【例1】

list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
print list[2:8:1]
print list[2:8:2]
print list[2::2]
print list[:2]
print list[::2]
print list[::-1]
print list[1::-1]
print list[8:1:-1]

Output:
[2, 3, 4, 5, 6, 7]
[2, 4, 6]
[2, 4, 6, 8]
[0, 1]
[0, 2, 4, 6, 8]
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
[1, 0]
[8, 7, 6, 5, 4, 3, 2]

Anonymous Functions

【例1:把1-15中3的倍数找出来并打印,只能用一行代码】
print filter(lambda x: x % 3 == 0, range(16))
Output:
[0, 3, 6, 9, 12, 15]

Iterating Over Dictionaries

movies = {
    "Monty Python and the Holy Grail": "Great",
    "Monty Python's Life of Brian": "Good",
    "Monty Python's Meaning of Life": "Okay"
}
#方法一 两种方法结果不同
for key in movies.keys():
    print key, movies[key]
#方法二
print movies.items()

Output:
Monty Python's Life of Brian Good
Monty Python's Meaning of Life Okay
Monty Python and the Holy Grail Great
[("Monty Python's Life of Brian", 'Good'), ("Monty Python's Meaning of Life", 'Okay'), ('Monty Python and the Holy Grail', 'Great')]

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容