python入门之语句(if语句、while语句、for语句)

yipeiwu_com6年前Python基础

python入门之语句,包括if语句、while语句、for语句,供python初学者参考。

//if语句例子
name = 'peirong';

if name == 'peirong':
 print 'this is peirong';
elif name== 'maojun':
 print 'this is maojun';
else:
 print 'others';

//while语句
i = 0;
a = range(10);
while i < a.__len__():
 print i;
 i = i+1;

//for语句
a = range(1,10);
for i in a:
 print i;
else:
 print 'The for loop is over!'

//continue 语句
a = range(1000)
for i in a:
  if i % 3 == 0:
    print 'chuyi 3 yu 0 ';
  elif i % 3 == 1:
    print 'chuyi 3 yu 1 ';
  else:
    continue

相关文章

Python进阶_关于命名空间与作用域(详解)

写在前面 如非特别说明,下文均基于Python3 命名空间与作用于跟名字的绑定相关性很大,可以结合另一篇介绍Python名字、对象及其绑定的文章。 1. 命名空间 1.1 什么是命名空间...

Python中List.index()方法的使用教程

 index()方法返回obj出现在列表中最低位索引。 语法 以下是index()方法的语法: list.index(obj) 参数   &...

python实现360皮肤按钮控件示例

复制代码 代码如下:#!/usr/bin/python  #-*-coding:utf-8-*- from PyQt4.QtGui import *from PyQt4.QtC...

Python常用列表数据结构小结

本文汇总了Python列表list一些常用的对象方法,可供初学者参考或查询,具体如下: 1.list.append(x) 把元素x添加到列表的结尾,相当于a[len(a):] =[x],...

python/Matplotlib绘制复变函数图像教程

python/Matplotlib绘制复变函数图像教程

今天发现sympy依赖的库mpmath里也有很多数学函数,其中也有在复平面绘制二维图的函数cplot,具体例子如下 from mpmath import * def f1(z):...