ex33.py

 1 i = 1
 2 numbers = []
 3
 4 while i <= 8:
 5     print ("At the top i is %d" % i)
 6     numbers.append(i)
 7     i = i * 2
 8     print ("Numbers now:",numbers)
 9     print ("At the bottom i is %d" % i)
10
11
12 print ("The numbers:")
13 for num in numbers:
14     print (num)
15
16 #应该看到的结果
17 At the top i is 1
18 Numbers now: [1]
19 At the bottom i is 2
20 At the top i is 2
21 Numbers now: [1, 2]
22 At the bottom i is 4
23 At the top i is 4
24 Numbers now: [1, 2, 4]
25 At the bottom i is 8
26 At the top i is 8
27 Numbers now: [1, 2, 4, 8]
28 At the bottom i is 16
29 The numbers:
30 1
31 2
32 4
33 8
34
35
36 nums = []
37 for i in range(1,9):
38     nums.append(i)
39     i = i * 2
40     print ("Numbers now:",nums)
41     print ("now i is : %d ," % i)
42 ‘‘‘for 循环只能在一些集合中进行依次循环读取,后面的代码不影响for循环中集合中的依次读取数据,
43 比如上例中的i的取值在(1,9),那么for函数会按照顺序在(1,2,3,4,5,6,7,8)中依次读取这些集合中的数值,
44 不会因为 下面代码中的i = i * 2 就改变for 函数的读取数据。但是在while中是整个小脚本的循环,i的取值
45 会受到下面代码i = i * 2 的改变带来的影响,从而影响下一次循环中i 的取值‘‘‘
46 # 应该看到的结果
47 Numbers now: [1]
48 now i is : 2 ,
49 Numbers now: [1, 2]
50 now i is : 4 ,
51 Numbers now: [1, 2, 3]
52 now i is : 6 ,
53 Numbers now: [1, 2, 3, 4]
54 now i is : 8 ,
55 Numbers now: [1, 2, 3, 4, 5]
56 now i is : 10 ,
57 Numbers now: [1, 2, 3, 4, 5, 6]
58 now i is : 12 ,
59 Numbers now: [1, 2, 3, 4, 5, 6, 7]
60 now i is : 14 ,
61 Numbers now: [1, 2, 3, 4, 5, 6, 7, 8]
62 now i is : 16 ,
时间: 2024-11-17 11:37:03

ex33.py的相关文章

使用TDD理解views.py与urls.py的关系

首先必须对MVC的概念有初步的认识,django也遵循这样一套规范,views.py相当于视图函数,是整个架构中的处理引擎,而urls.py的作用就是将用户请求送入这样的引擎. 项目结构: urls.py: from django.conf.urls import include, url from django.contrib import admin urlpatterns = [ # Examples: #url(r'^$', 'mysite.views.home', name='home

layers.py cs231n

如果有错误,欢迎指出,不胜感激. import numpy as np def affine_forward(x, w, b): 第一个最简单的 affine_forward简单的前向传递,返回 out,cache """ Computes the forward pass for an affine (fully-connected) layer. The input x has shape (N, d_1, ..., d_k) and contains a minibat

Python pydoc.py

1. 查看帮助,我们可以在python命令行交互环境下用 help函数,比如: 查看 math 模块: >>> help('math')Help on built-in module math: NAME math DESCRIPTION This module is always available. It provides access to the mathematical functions defined by the C standard. FUNCTIONS acos(..

创建py模板

创建模板之后,每次新建py文件,已初始定义的代码段将会自动出现在py文件中.

python下编译py成pyc和pyo

其实很简单,用python -m py_compile file.py python -m py_compile /root/src/{file1,file2}.py编译成pyc文件.也可以写份脚本来做这事:Code: import py_compile py_compile.compile('path') //path是包括.py文件名的路径 用python -O -m py_compile file.py 编译成pyo文件.1.其中的 -m 相当于脚本中的import,这里的-m py_co

django 运行python manage.py sqlall books 时报错 app has migration

出现这个问题的原因是版本之前的不兼容,我用的django版本是1.8.6 而 这条python manage.py sqlall books 是基于django1.0版本的. 在django1.8.6版本中生成一个表的语句是    $ python manage.py makemigrations books $ python manage.py sqlmigrate books 0001 django book2 是一本不错的教程,但是就是版本太老了,可以通过看book2对django有一个比

word2vec_basic.py

ssh://[email protected]:22/usr/bin/python3 -u /home/win_pymine_clean/feature_wifi/word2vec_basic.py Found and verified text8.zip Data size 17005207 Most common words (+UNK) [['UNK', 418391], ('the', 1061396), ('of', 593677), ('and', 416629), ('one',

如何在Windows下用cpu模式跑通py-faster-rcnn 的demo.py

关键字:Windows.cpu模式.Python.faster-rcnn.demo.py 声明:本篇blog暂时未经二次实践验证,主要以本人第一次配置过程的经验写成.计划在7月底回家去电脑城借台机子试试验证步骤的正确性,本blog将根据实际遇到的问题持续更新.另外blog中除提到的下载链接外我还会给出网盘链接方便下载,包括我的整个工程的网盘链接.如果有些报错解决不了可直接拿本人的相关文件替换,本篇blog具有较高的参考性. 本人微软版caffe工程     下载链接:http://pan.bai

pyinstaller对py脚本进行打包(生成windows可执行程序)

这个没有什么截图,主要步骤如下: a. 安装python-2.7-x64版本(我的系统是win7-x64) b. 下载PyInstaller-2.1 x64版本 c. 下载pywin32-x64版本 d.下载upx.exe (这个在pyinstall官网上面会有提示) e.使用pythone setup.py install 安装pyinstaller 一般我们是生成单文件的exe,方便可以在其他windows机器上可执行. 生成的命令是: python pyinstaller.py  -F