Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / html / python / ref / print.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="STYLESHEET" href="ref.css" type='text/css' />
<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
<link rel='start' href='../index.html' title='Python Documentation Index' />
<link rel="first" href="ref.html" title='Python Reference Manual' />
<link rel='contents' href='contents.html' title="Contents" />
<link rel='index' href='genindex.html' title='Index' />
<link rel='last' href='about.html' title='About this document...' />
<link rel='help' href='about.html' title='About this document...' />
<link rel="next" href="return.html" />
<link rel="prev" href="del.html" />
<link rel="parent" href="simple.html" />
<link rel="next" href="return.html" />
<meta name='aesop' content='information' />
<title>6.6 The print statement </title>
</head>
<body>
<DIV CLASS="navigation">
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="6.5 The del statement"
href="del.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="6. Simple statements"
href="simple.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="6.7 The return statement"
href="return.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Reference Manual</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><img src='../icons/blank.png'
border='0' height='32' alt='' width='32' /></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="del.html">6.5 The del statement</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="simple.html">6. Simple statements</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="return.html">6.7 The return statement</A>
</div>
<hr /></div>
</DIV>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION008600000000000000000"></A><A NAME="print"></A>
<BR>
6.6 The <tt class="keyword">print</tt> statement
</H1>
<a id='l2h-495' xml:id='l2h-495'></a>
<P>
<dl><dd class="grammar">
<div class="productions">
<table>
<tr>
<td><a id='tok-print_stmt' xml:id='tok-print_stmt'>print_stmt</a></td>
<td>::=</td>
<td>"print" ( <big>[</big><a class='grammartoken' href="Booleans.html#tok-expression">expression</a> ("," <a class='grammartoken' href="Booleans.html#tok-expression">expression</a>)* <big>[</big>","<big>]</big><big>]</big></td></tr>
<tr>
<td></td>
<td></td>
<td><code>| "&gt;<code>&gt;</code>" <a class='grammartoken' href="Booleans.html#tok-expression">expression</a>
<big>[</big>("," <a class='grammartoken' href="Booleans.html#tok-expression">expression</a>)+ <big>[</big>","<big>]</big><big>]</big> )</code></td></tr>
</table>
</div>
<a class="grammar-footer"
href="grammar.txt" type="text/plain"
>Download entire grammar as text.</a>
</dd></dl>
<P>
<tt class="keyword">print</tt> evaluates each expression in turn and writes the
resulting object to standard output (see below). If an object is not
a string, it is first converted to a string using the rules for string
conversions. The (resulting or original) string is then written. A
space is written before each object is (converted and) written, unless
the output system believes it is positioned at the beginning of a
line. This is the case (1) when no characters have yet been written
to standard output, (2) when the last character written to standard
output is "<tt class="character">&#92;n</tt>", or (3) when the last write operation on
standard output was not a <tt class="keyword">print</tt> statement. (In some cases
it may be functional to write an empty string to standard output for
this reason.) <span class="note"><b class="label">Note:</b>
Objects which act like file objects but which are
not the built-in file objects often do not properly emulate this
aspect of the file object's behavior, so it is best not to rely on
this.</span>
<a id='l2h-503' xml:id='l2h-503'></a>
<a id='l2h-496' xml:id='l2h-496'></a>
<P>
A "<tt class="character">&#92;n</tt>" character is written at the end, unless the
<tt class="keyword">print</tt> statement ends with a comma. This is the only action
if the statement contains just the keyword <tt class="keyword">print</tt>.
<a id='l2h-497' xml:id='l2h-497'></a><a id='l2h-498' xml:id='l2h-498'></a>
<P>
Standard output is defined as the file object named <code>stdout</code>
in the built-in module <tt class="module">sys</tt>. If no such object exists, or if
it does not have a <tt class="method">write()</tt> method, a <tt class="exception">RuntimeError</tt>
exception is raised.
<a id='l2h-499' xml:id='l2h-499'></a><a id='l2h-504' xml:id='l2h-504'></a>
<a id='l2h-501' xml:id='l2h-501'></a><a id='l2h-502' xml:id='l2h-502'></a>
<P>
<tt class="keyword">print</tt> also has an extended<a id='l2h-505' xml:id='l2h-505'></a>
form, defined by the second portion of the syntax described above.
This form is sometimes referred to as ``<tt class="keyword">print</tt> chevron.''
In this form, the first expression after the <code>&gt;</code><code>&gt;</code> must
evaluate to a ``file-like'' object, specifically an object that has a
<tt class="method">write()</tt> method as described above. With this extended form,
the subsequent expressions are printed to this file object. If the
first expression evaluates to <code>None</code>, then <code>sys.stdout</code> is
used as the file for output.
<P>
<DIV CLASS="navigation">
<div class='online-navigation'>
<p></p><hr />
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="6.5 The del statement"
href="del.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="6. Simple statements"
href="simple.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="6.7 The return statement"
href="return.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Reference Manual</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><img src='../icons/blank.png'
border='0' height='32' alt='' width='32' /></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="del.html">6.5 The del statement</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="simple.html">6. Simple statements</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="return.html">6.7 The return statement</A>
</div>
</div>
<hr />
<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
</DIV>
<!--End of Navigation Panel-->
<ADDRESS>
See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
</ADDRESS>
</BODY>
</HTML>