设为首页 收藏本站
查看: 662|回复: 0

[经验分享] Python 入门教程 8 ---- Python Lists and Dictionaries

[复制链接]

尚未签到

发表于 2017-4-27 12:04:16 | 显示全部楼层 |阅读模式
  

  第一节
    1 介绍了Python的列表list
    2 列表的格式list_name = [item1 , item2],Python的列表和C语言的数组很像
    3 列表可以为空,就是empty_list = [],比如数组为空

    4 举例

zoo_animals = ["pangolin", "cassowary", "sloth", "dog"];
# One animal is missing!
if len(zoo_animals) > 3:
print "The first animal at the zoo is the " + zoo_animals[0]
print "The second animal at the zoo is the " + zoo_animals[1]
print "The third animal at the zoo is the " + zoo_animals[2]
print "The fourth animal at the zoo is the " + zoo_animals[3]


  第二节
    1 介绍了我们可以使用下标来访问list的元素,就像数组一样
    2 下标从0开始,比如list_name[0]是第一个元素
    3 练习:输出列表numbers的第二个和第四个数的和

numbers = [5, 6, 7, 8]
print "Adding the numbers at indices 0 and 2..."
print numbers[0] + numbers[2]
print "Adding the numbers at indices 1 and 3..."
# Your code here!
print numbers[1] + numbers[3]



第三节    1 介绍了我们可以使用下标来对第几个元素进行赋值
    2 比如lisy_name[2] = 2,就是把列表的第三个值赋值为2
    3 练习:把列表zoo_animals中的tiger换成其它的动物

zoo_animals = ["pangolin", "cassowary", "sloth", "tiger"]
# Last night our zoo's sloth brutally attacked
#the poor tiger and ate it whole.
# The ferocious sloth has been replaced by a friendly hyena.
zoo_animals[2] = "hyena"
# What shall fill the void left by our dear departed tiger?
# Your code here!
zoo_animals[3] = "dog"


第四节    1 介绍了list中添加一个item的方法append()
    2 比list_name.append(item),求列表list_name中有几项就是利用len(list_name)
    3 练习:在列表suitcase在增加三项,然后求出它的元素的个数

suitcase = []
suitcase.append("sunglasses")
# Your code here!
suitcase.append("a")
suitcase.append("b")
suitcase.append("c")
# Set this to the length of suitcase
list_length = len(suitcase)
print "There are %d items in the suitcase." % (list_length)
print suitcase



第五节    1 介绍了list列表怎样得到子列表list_name[a:b],将得到下标a开始到下标b之前的位置
    2 比如列表my_list = [1,2,3,4],那么my_list[1:3]得到的将是[2,3]
  


my_list = [0, 1, 2, 3]
my_slice = my_list[1:3]
print my_list
# Prints [0, 1, 2, 3]
print my_slice
# Prints [1, 2]
  

3 如果我们默认第二个值,那么将会直接到末尾那个位置。如果默认第一个值,值是从头开始
my_list[:2]
# Grabs the first two items
my_list[3:]
# Grabs the fourth through last
    4 练习:把first列表设置为suitcase的前两项,把middle列表设置为suitcase的中间两项,把last列表设置为suitcase的后两项

suitcase = ["sunglasses", "hat", "passport", "laptop", "suit", "shoes"]
# The first two items
first = suitcase[0:2]
# Third and fourth items
middle = suitcase[2:4]
# The last two items
last = suitcase[4:]

  


第六节    1 介绍了不仅列表可以得到子串,字符串也满足
    2 比如string[a:b]是得到从下标a开始到b之前的子串
    3 练习:把三个变量分别设置为对应的子串

animals = "catdogfrog"
# The first three characters of animals
cat = animals[:3]   
# The fourth through sixth characters
dog = animals[3:6]   
# From the seventh character to the end
frog = animals[6:]



第七节    1 介绍了列表的两种方法index(item)和insert(index , item)
    2 index(item)方法是查找item在列表中的下标,使用方法list_name.index(item)
    3 insert(index,item)是在下标index处插入一个item,其余的后移,使用方法list_name.insert(index , item)
    4 练习:使用index()函数找到列表中的"duck",然后在当前位置插入"cobra"
           如果我们使用print list_name,就是直接输出列表的所有元素

animals = ["aardvark", "badger", "duck", "emu", "fennec fox"]
# Use index() to find "duck"
duck_index = animals.index("duck")
# Your code here!
animals.insert(duck_index,"cobra")
# Observe what prints after the insert operation
print animals


  第九节
    1 介绍我们可以使用for循环来遍历列表的每一个元素
    2 比如for variable in list_name:
            statement
      这样我们可以枚举列表的每一个元素
    3 练习:打印列表的每一个元素的值*2

my_list = [1,9,3,8,5,7]
for number in my_list:
# Your code here
print 2*number


第十节    1 介绍了列表的另外一种方法sort(),可以对列表进行排序,默认是从小到打排序
    2 使用的方法是list_name.sort()
    3 列表中删除一个item的方法list_name.remove(item)

beatles = ["john","paul","george","ringo","stuart"]
beatles.remove("stuart")
print beatles
>> ["john","paul","george","ringo"]
    4 练习:利用for循环把没一项的值的平方加入列表square_list,然后对square_list排序输出

start_list = [5, 3, 1, 2, 4]
square_list = []
# Your code here!
for numbers in start_list:
square_list.append(numbers**2)
print square_list.sort()



第十一节    1 介绍了Python中的字典,字典的每一个item是一个键值对即key:value
    2 比如字典d = {'key1' : 1, 'key2' : 2, 'key3' : 3},有三个元素
    3 Python的字典和C++里面的map很像,我们可以使用d["key1"]来输出key1对应的value
    4 练习:打印出'Sloth'和'Burmese Python'对应的value
           注意在脚本语言里面可以使用单引号也可以使用双引号来表示字符串

# Assigning a dictionary with three key-value pairs to residents:
residents = {'Puffin' : 104, 'Sloth' : 105, 'Burmese Python' : 106}
# Prints Puffin's room number
print residents['Puffin']
# Your code here!
print residents['Sloth']
print residents['Burmese Python']



第十二节    1 介绍了三点
      1 字典和列表一样可以是空的,比如d = {}就是一个空的字典
      2 字典里面添加一个键值对或者是改变已有key的value,使用这种方法 dict_name[key] = value

3 我们也可以使用len(dict_name)求出字典的元素的个数

    2 练习:至少添加3个键值对到字典menu中

# Empty dictionary
menu = {}
# Adding new key-value pair
menu['Chicken Alfredo'] = 14.50
print menu['Chicken Alfredo']
# Your code here: Add some dish-price pairs to menu!
menu["a"] = 1
menu["b"] = 2
menu["c"] = 3
# print you code
print "There are " + str(len(menu)) + " items on the menu."
print menu




第十三节    1 介绍了我们可以删除字典中的键值对
    2 我们使用del dict_name[key],这样将删除键值为key的键值对
    3 练习:删除key为"Sloth"和"Bengal Tiger",并且设置key为"Rockhopper Penguin"的val和之前的不一样

# key - animal_name : value - location
zoo_animals = { 'Unicorn' : 'Cotton Candy House',
'Sloth' : 'Rainforest Exhibit',
'Bengal Tiger' : 'Jungle House',
'Atlantic Puffin' : 'Arctic Exhibit',
'Rockhopper Penguin' : 'Arctic Exhibit'}
# A dictionary (or list) declaration may break across multiple lines
# Removing the 'Unicorn' entry. (Unicorns are incredibly expensive.)
del zoo_animals['Unicorn']
# Your code here!
del zoo_animals["Sloth"]
del zoo_animals["Bengal Tiger"]
zoo_animals["Rockhopper Penguin"] = "aa"
# print you code
print zoo_animals



第十四节    1 介绍了字典中一个key可以对应不止一个的value
    2 比如my_dict = {"hello":["h","e","l","l","o"]},那么key为"hello"对应的value有5个,我们可以使用my_dict["hello"][index]来取得下标为index的value,比如index为1的时候是"e"
    3 对于一个key对应多个value的话,我们应该要用list来保存这些value
    4对于一个key对应多个value的话,我们还可以对这个key的val进行排序,比如my_dict["hello"].sort()
    4 练习
      1 在字典inventory中添加一个key为'pocket',值设置为列表["seashell" , "strange berry" , "lint"]
      2 对key'pocket'的value进行排序
      3 删除字典inventory中key为'backpack'的键值对
      4 把字典inventory中key为'gold'的value加一个50

# Assigned a new list to 'pouch' key
inventory = {'gold' : 500,
'pouch' : ['flint', 'twine', 'gemstone'],
'backpack' : ['xylophone','dagger', 'bedroll','bread loaf']}
# Adding a key 'burlap bag' and assigning a list to it
inventory['burlap bag'] = ['apple', 'small ruby', 'three-toed sloth']
# Sorting the list found under the key 'pouch'
inventory['pouch'].sort()
# Here the dictionary access expression takes the place of a list name
# Your code here
inventory['pocket'] = ["seashell" , "strange berry" , "lint"]
inventory['pocket'].sort()
del inventory['backpack']
inventory['gold'] = [500 , 50]



  

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-369986-1-1.html 上篇帖子: python自动安装工具easy_install 下篇帖子: Python 基础语法知识一
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表