Python入门10 —— for循环】的更多相关文章

1.字符串依次取值 students = ['egon', 'lxx', 'alex'] i = 0 while i < 3: print(students[i]) i += 1 2.针对循环取值操作,while循环并不擅长,于是python提供一个专门循环取值操作:for循环 students = ['egon', 'lxx', 'alex'] for x in students: # 有几个值就循环几次 print(x) dic={'name':'egon','age':18,'sex':'…
大爽Python入门公开课教案 点击查看教程总目录 for循环 可迭代对象iterable 不同于其他语言. python的for循环只能用于遍历 可迭代对象iterable 的项. 即只支持以下语法: for item in iterable: ... 其中 iterable是可迭代对象 item是可迭代对象中的项. ...是(要换成)循环时要执行的代码. 可迭代对象的定义和具体原理解释起来比较复杂(其实我也不是很会Orz). 这里只需要了解基础的. 哪些是(基础的)可迭代对象. 回顾一下,我…
Python中有两种循环,分别为:for循环和while循环. 1. for循环 for循环可以用来遍历某一对象(遍历:通俗点说,就是把这个循环中的第一个元素到最后一个元素依次访问一次).for循环的基本结构如下: 具体看这个案例: 设计一个函数,在桌面创建10个文本,用数字从1-10依次给它们命名. def text_create(): path = '/Users/duwangdan/Desktop/' for text_name in range(1,11): # 1-10的范围需要用到r…
#!/usr/bin/env python # -*- coding:utf-8 -*- #while 循环的作用 import time while True: ") time.sleep(0.001) #每次print“1”的间隔为0.001秒 #执行一次后,循环从while开始第二次执行,接着第三次...第四次...永不停止... print("end")…
#!/usr/bin/env python # -*- coding:utf-8 -*- #while循环里面True和False的作用,真和假 """ n1等于真(True),while循环开始,print字符串“1“, 接着n1重新赋值为False(假), 条件不再成立,所以跳出while循环,执行print字符串“end“ """ n1 = True while n1: ") n1 = False print("end&…
两种循环: 1 for in 2 while #coding:utf-8 #/usr/bin/python """ 2018-11-03 dinghanhua 循环语句 """ '''for in''' #打印0-9 for i in range(10): print(i) #取出元组中不能被2整除的数据 turple = (1,13,33,54,8329) for i in turple: if(i%2 == 1): print(i) '''w…
如果计算机不能循环,那么它比人还笨,实际上它也确实比人笨.你之所以觉得计算机好厉害,是因为它快,guangzhoushenbo.com计算机可以在1秒钟内重复做一件事情成千上万次. Python学习交流群 643692991 每天更新 ''' 我们把range想象成一个机器,它从1开始生产整数,一直到10.而这个i 则代表刚刚生产出来的数值,所以i就不停的在变化.试想一下,如果没有循环,我们该怎么做呢? print 1print 2print 3print 10 其实没有循环,我们也能打印1到1…
1.用ELIF比较省CPU: 第一种方法,使用if score = int(input('请输入你的分数:')) if (score <= 100) and (score >= 90): print('A')if (score <= 89) and (score >= 80): print ("B")if (score <= 79) and (score >= 70): print ("C")if (score <= 69)…
python入门(11)条件判断和循环 条件判断 计算机之所以能做很多自动化的任务,因为它可以自己做条件判断. 比如,输入用户年龄,根据年龄打印不同的内容,在Python程序中,用if语句实现: age = 20 if age >= 18: print 'your age is', age print 'adult' 根据Python的缩进规则,如果if语句判断是True,就把缩进的两行print语句执行了,否则,什么也不做. 也可以给if添加一个else语句,意思是,如果if判断是False,…
python入门学习:6.用户输入和while循环 关键点:输入.while循环 6.1 函数input()工作原理6.2 while循环简介6.3 使用while循环处理字典和列表 6.1 函数input()工作原理   函数input()让程序暂停运行,等待用户输入一些文本.函数input()接受一个参数:即要向用户显示的提示或说明,让用户知道该如何做. 1message = input("Tell me something, and I will repeat it back to you…