博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 之 循环语句
阅读量:5255 次
发布时间:2019-06-14

本文共 3017 字,大约阅读时间需要 10 分钟。

python提供了for循环和while循环以及嵌套循环(在python中没有do..while循环)

while 循环语法:

while 判断条件:   执行语句......

实际案例:

numbers=[12,37,5,42,8,3]even=[];odd=[];while len(numbers)>0:    number=numbers.pop();    if(number%2==0):        even.append(number)    else:        odd.append(number);结果:  numbers=[];  even=[8,42,12];  odd=[3,5,37]

循环使用else语句 实例:

count = 0while count < 5:   print count, " is  less than 5"   count = count + 1else:   print count, " is not less than 5“ 结果;
0 is less than 5 1 is less than 5 2 is less than 5 3 is less than 5 4 is less than 5 5 is not less than 5
 

做一些简单的小游戏练习

猜大小的游戏

import randoms = int(random.uniform(1,10))#print(s)m = int(input('输入整数:'))while m != s:    if m > s:        print('大了')        m = int(input('输入整数:'))    if m < s:        print('小了')        m = int(input('输入整数:'))    if m == s:        print('OK')        break;

猜拳小游戏

import randomwhile 1:    s = int(random.randint(1, 3))    if s == 1:        ind = "石头"    elif s == 2:        ind = "剪子"    elif s == 3:        ind = "布"    m = raw_input('输入 石头、剪子、布,输入"end"结束游戏:')    blist = ['石头', "剪子", "布"]    if (m not in blist) and (m != 'end'):        print "输入错误,请重新输入!"    elif (m not in blist) and (m == 'end'):        print "\n游戏退出中..."        break    elif m == ind :        print "电脑出了: " + ind + ",平局!"    elif (m == '石头' and ind =='剪子') or (m == '剪子' and ind =='布') or (m == '布' and ind =='石头'):        print "电脑出了: " + ind +",你赢了!"    elif (m == '石头' and ind =='布') or (m == '剪子' and ind =='石头') or (m == '布' and ind =='剪子'):        print "电脑出了: " + ind +",你输了!"

摇筛子游戏

import randomimport sysimport timeresult = []while True:    result.append(int(random.uniform(1,7)))    result.append(int(random.uniform(1,7)))    result.append(int(random.uniform(1,7)))    print result    count = 0    index = 2    pointStr = ""    while index >= 0:        currPoint = result[index]        count += currPoint        index -= 1        pointStr += " "        pointStr += str(currPoint)    if count <= 11:        sys.stdout.write(pointStr + " -> " + "小" + "\n")        time.sleep( 1 )   # 睡眠一秒    else:        sys.stdout.write(pointStr + " -> " + "大" + "\n")        time.sleep( 1 )   # 睡眠一秒    result = []

python for 循环可以遍历任何序列的项目,如一个列表或者一个字符串。

for循环的语法:

for iterating_var in sequence  statements(s)

简单案例

for letter in 'Python':     # 第一个实例   print '当前字母 :', letter fruits = ['banana', 'apple',  'mango']for fruit in fruits:        # 第二个实例   print '当前水果 :', fruit

通过序列索引迭代:将列表编程序列索引

fruits=["banana","apple","mango"]for index in range(len(fruits)):    print(index)    print("当前水果:"+fruits[index])

循环使用else语句

在python中,for...else 表示这样的意思,for中的语句和普通的没有区别,else中的语句会在循环正常执行完(即for不是通过break跳出而中断的) 的情况下执行,while...else也是一样

for num in range(10,20):    for i in range(2,num):        if(num%i)==0:           j=num/i           print("%d 等于 %d * %d" %(num,i,j))           break    else:       print(str(num) +“是一个质数”)

使用内置enumerate 函数进行遍历  案例:

sequence=[12,34,34,23,45,76,89]for i ,j in enumerate(sequence):    print(i,j)

 

转载于:https://www.cnblogs.com/zmztya/p/7242401.html

你可能感兴趣的文章
Dijkstra+计算几何 POJ 2502 Subway
查看>>
修复IE不能执行JS的方法
查看>>
程序员究竟该如何提高效率zt
查看>>
希尔排序法(缩小增量法)
查看>>
PHP编程基础学习(一)——数据类型
查看>>
MongoDB-JAVA-Driver 3.2版本常用代码全整理(2) - 查询
查看>>
NPOI处理Word文本中上下角标
查看>>
Android笔记 Handler
查看>>
如何阅读大型前端开源项目的源码(转)
查看>>
java.util.Arrays类详解
查看>>
idea搭建tocmat
查看>>
NYOJ-626-intersection set(二分查找)
查看>>
Binary Tree Traversals HDU - 1710 
查看>>
PHP程序员的技术成长规划(送给迷茫的你)
查看>>
spring配置详解-连接池配置(转载)
查看>>
堆排序算法原理
查看>>
java 跨数据库导入大数据
查看>>
项目管理之路(1):初步踏入项目管理
查看>>
Java 中 静态方法与非静态方法的区别
查看>>
crypto加密
查看>>