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

Python_02

时间:2017-10-27 01:18:12      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:png   9.png   blog   函数实现   pytho   .com   col   es2017   strong   

Python 判断语句  if,while

if ture:

  print(1)

else:

  print(0)

技术分享

技术分享

for循环和内嵌函数range()

技术分享

range(a,b,c)   a:起始位置  b:终止位置 c:步长

接下来 优化上面代码  我想用户输入3次  程序才终止   期间提醒用户输入

技术分享

假如我输入了三次都不过瘾  继续优化代码

技术分享

 

 python类__见例子

def zhuzi(list):
    for i in range(len(list)-1, 0, -1):
        for j in range(i):
            if list[j] > list[j+1]:
                list[j], list[j+1] = list[j+1], list[j]
    print(list)
zhuzi([9,8,7,6,5,4]) #函数实现冒泡排序

 

Python_02

标签:png   9.png   blog   函数实现   pytho   .com   col   es2017   strong   

原文地址:http://www.cnblogs.com/bamboocolor/p/7739792.html

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