码迷,mamicode.com
首页 > 编程语言 > 详细

python 开搞

时间:2017-11-25 14:16:23      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:lin   列表   处理   可变   first   gre   int   for循环   you   

1.  使用for循环处理数据是一种对数据集执行整体操作的不错的方式

2.  magicians=[‘alice‘,‘david‘,‘carolina‘]

           for magician in magicians:

           print(magician.title() + ‘ ,that was a greak trick‘)

    print("thank you everyone,that was a great magic show!")

3.  python 函数range()可以生成一系列数字

4.  for value in range(1,5):

       print(value)

5.  a=[]

     for b in range(1,11):

       c=(d**2)

            a.append(c)

       print(a)

6.    列表解析:

       a = [ value**2 for value in range(1,11)]

       print (a)

7.    遍历切片:

       players=[‘a‘,‘b‘,‘c‘,‘d‘,‘e‘]

            print("here are the first three players on my team")

       for player in players[-3:]

               print(player.title())

8.         复制列表

9.      定义元组(python将不能修改的值称为不可变的,而不可变的列表被称为元组)

 

python 开搞

标签:lin   列表   处理   可变   first   gre   int   for循环   you   

原文地址:http://www.cnblogs.com/houbashu/p/7892014.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!