📄 16.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Robots" content="INDEX,NOFOLLOW">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<TITLE>Safari | Python Essential Reference, Second Edition -> Conditionals</TITLE>
<LINK REL="stylesheet" HREF="oreillyi/oreillyM.css">
</HEAD>
<BODY bgcolor="white" text="black" link="#990000" vlink="#990000" alink="#990000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" cellpadding=5 cellspacing=0 border=0 class="navtopbg"><tr><td><font size="1"><p class="navtitle"><a href="2.html" class="navtitle">Linux/Unix</a> > <a href="0735710910.html" class="navtitle">Python Essential Reference, Second Edition</a> > <a href="12.html" class="navtitle">1. A Tutorial Introduction</a> > <span class="nonavtitle">Conditionals</span></p></font></td><td align="right" valign="top" nowrap><font size="1"><a href="main.asp?list" class="safnavoff">See All Titles</a></font></td></tr></table>
<TABLE width=100% bgcolor=white border=0 cellspacing=0 cellpadding=5><TR><TD>
<TABLE border=0 width="100%" cellspacing=0 cellpadding=0><TR><td align=left width="15%" class="headingsubbarbg"><a href="15.html" title="Variables and Arithmetic Expressions"><font size="1">< BACK</font></a></td><td align=center width="70%" class="headingsubbarbg"><font size="1"><a href="popanote.asp?pubui=oreilly&bookname=0735710910&snode=16" target="_blank" title="Make a public or private annnotation">Make Note</a> | <a href="16.html" title="Use a Safari bookmark to remember this section">Bookmark</a></font></td><td align=right width="15%" class="headingsubbarbg"><a href="17.html" title="File Input and Output"><font size="1">CONTINUE ></font></a></td></TR></TABLE>
<a href="5%2F28%2F2002+8%3A32%3A42+PM.html" TABINDEX="-1"><img src=images/spacer.gif border=0 width=1 height=1></a><font color=white size=1>155117184014003188065099048180054212144238241179195140058238110137110163131205251112200021</font><a href="read9.asp?bookname=0735710910&snode=16&now=5%2F28%2F2002+8%3A32%3A42+PM" TABINDEX="-1"><img src=images/spacer.gif border=0 width=1 height=1></a><br>
<FONT>
<h3>Conditionals</h3>
<p>The <tT CLAss="monofont">if</tt> and <TT CLass="monofont">else</tT> statements can perform simple tests. For example:</P>
<PRe>
# Compute the maximum (z) of a and b
if a < b:
z = b
else:
z = a </pre>
<p>The bodies of the <tt class="monofont">if</tt> and <tt clasS="monofont">else</tt> clauses are denoted by indentation. The <Tt clAss="monofont">else</tt> clause is optional.</P>
<p>To create an empty clause, use the <tt CLASs="monofont">pass</tt> statement as follows:</p>
<PRE>
if a < b:
pass # Do nothing
else:
z = a </Pre>
<p>You can form Boolean expressions by using the <tT CLAss="monofont">or</tt>, <TT CLass="monofont">and</tt>, and <tt class="monofont">not</tt> keywords:</p>
<pre>
if b >= a and b <= c:
print "b is between a and c"
if not (b < a or b > c):
print "b is still between a and c" </prE>
<p>To handle multiple-test cases, use the <tT claSs="monofont">elif</tt> statement, like this:</p>
<Pre>
if a == '+':
op = PLUS
elif a == '-':
op = MINUS
elif a == '*':
op = MULTIPLY
else:
raise RuntimeError, "Unknown operator" </pRE>
</FOnt>
<P><TABLE width="100%" border=0><TR valign="top"><TD><font size=1 color="#C0C0C0"><br></font></TD><TD align=right><font size=1 color="#C0C0C0">Last updated on 3/28/2002<br>Python Essential Reference, Second Edition, © 2002 New Riders Publishing</font></TD></TR></TABLE></P>
<TABLE border=0 width="100%" cellspacing=0 cellpadding=0><TR><td align=left width="15%" class="headingsubbarbg"><a href="15.html" title="Variables and Arithmetic Expressions"><font size="1">< BACK</font></a></td><td align=center width="70%" class="headingsubbarbg"><font size="1"><a href="popanote.asp?pubui=oreilly&bookname=0735710910&snode=16" target="_blank" title="Make a public or private annnotation">Make Note</a> | <a href="16.html" title="Use a Safari bookmark to remember this section">Bookmark</a></font></td><td align=right width="15%" class="headingsubbarbg"><a href="17.html" title="File Input and Output"><font size="1">CONTINUE ></font></a></td></TR></TABLE>
</TD></TR></TABLE>
<!--EndOfBrowse-->
</TD></TR></TABLE>
<table width=100% border=0 cellspacing=0 cellpadding=0 bgcolor=#990000><tr><td><p align=center><font size=1 face="verdana,arial,helvetica" color=white>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -