Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / html / python / ref / string-conversions.html
CommitLineData
86530b38
AT
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<html>
3<head>
4<link rel="STYLESHEET" href="ref.css" type='text/css' />
5<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
6<link rel='start' href='../index.html' title='Python Documentation Index' />
7<link rel="first" href="ref.html" title='Python Reference Manual' />
8<link rel='contents' href='contents.html' title="Contents" />
9<link rel='index' href='genindex.html' title='Index' />
10<link rel='last' href='about.html' title='About this document...' />
11<link rel='help' href='about.html' title='About this document...' />
12<link rel="prev" href="dict.html" />
13<link rel="parent" href="atoms.html" />
14<link rel="next" href="primaries.html" />
15<meta name='aesop' content='information' />
16<title>5.2.7 String conversions</title>
17</head>
18<body>
19<DIV CLASS="navigation">
20<div id='top-navigation-panel' xml:id='top-navigation-panel'>
21<table align="center" width="100%" cellpadding="0" cellspacing="2">
22<tr>
23<td class='online-navigation'><a rel="prev" title="5.2.6 Dictionary displays"
24 href="dict.html"><img src='../icons/previous.png'
25 border='0' height='32' alt='Previous Page' width='32' /></A></td>
26<td class='online-navigation'><a rel="parent" title="5.2 Atoms"
27 href="atoms.html"><img src='../icons/up.png'
28 border='0' height='32' alt='Up One Level' width='32' /></A></td>
29<td class='online-navigation'><a rel="next" title="5.3 Primaries"
30 href="primaries.html"><img src='../icons/next.png'
31 border='0' height='32' alt='Next Page' width='32' /></A></td>
32<td align="center" width="100%">Python Reference Manual</td>
33<td class='online-navigation'><a rel="contents" title="Table of Contents"
34 href="contents.html"><img src='../icons/contents.png'
35 border='0' height='32' alt='Contents' width='32' /></A></td>
36<td class='online-navigation'><img src='../icons/blank.png'
37 border='0' height='32' alt='' width='32' /></td>
38<td class='online-navigation'><a rel="index" title="Index"
39 href="genindex.html"><img src='../icons/index.png'
40 border='0' height='32' alt='Index' width='32' /></A></td>
41</tr></table>
42<div class='online-navigation'>
43<b class="navlabel">Previous:</b>
44<a class="sectref" rel="prev" href="dict.html">5.2.6 Dictionary displays</A>
45<b class="navlabel">Up:</b>
46<a class="sectref" rel="parent" href="atoms.html">5.2 Atoms</A>
47<b class="navlabel">Next:</b>
48<a class="sectref" rel="next" href="primaries.html">5.3 Primaries</A>
49</div>
50<hr /></div>
51</DIV>
52<!--End of Navigation Panel-->
53
54<H2><A NAME="SECTION007270000000000000000"></A><A NAME="string-conversions"></A>
55<BR>
565.2.7 String conversions
57</H2>
58<a id='l2h-356' xml:id='l2h-356'></a><a id='l2h-357' xml:id='l2h-357'></a><a id='l2h-358' xml:id='l2h-358'></a><a id='l2h-362' xml:id='l2h-362'></a>
59
60<P>
61A string conversion is an expression list enclosed in reverse (a.k.a.
62backward) quotes:
63
64<P>
65<dl><dd class="grammar">
66<div class="productions">
67<table>
68<tr>
69 <td><a id='tok-string_conversion' xml:id='tok-string_conversion'>string_conversion</a></td>
70 <td>::=</td>
71 <td>"`" <a class='grammartoken' href="exprlists.html#tok-expression_list">expression_list</a> "`"</td></tr>
72</table>
73</div>
74<a class="grammar-footer"
75 href="grammar.txt" type="text/plain"
76 >Download entire grammar as text.</a>
77</dd></dl>
78
79<P>
80A string conversion evaluates the contained expression list and
81converts the resulting object into a string according to rules
82specific to its type.
83
84<P>
85If the object is a string, a number, <code>None</code>, or a tuple, list or
86dictionary containing only objects whose type is one of these, the
87resulting string is a valid Python expression which can be passed to
88the built-in function <tt class="function">eval()</tt> to yield an expression with the
89same value (or an approximation, if floating point numbers are
90involved).
91
92<P>
93(In particular, converting a string adds quotes around it and converts
94``funny'' characters to escape sequences that are safe to print.)
95
96<P>
97Recursive objects (for example, lists or dictionaries that contain a
98reference to themselves, directly or indirectly) use "<tt class="samp">...</tt>" to
99indicate a recursive reference, and the result cannot be passed to
100<tt class="function">eval()</tt> to get an equal value (<tt class="exception">SyntaxError</tt> will
101be raised instead).
102<a id='l2h-359' xml:id='l2h-359'></a>
103<P>
104The built-in function <tt class="function">repr()</tt> performs exactly the same
105conversion in its argument as enclosing it in parentheses and reverse
106quotes does. The built-in function <tt class="function">str()</tt> performs a
107similar but more user-friendly conversion.
108<a id='l2h-360' xml:id='l2h-360'></a><a id='l2h-361' xml:id='l2h-361'></a>
109<P>
110
111<DIV CLASS="navigation">
112<div class='online-navigation'>
113<p></p><hr />
114<table align="center" width="100%" cellpadding="0" cellspacing="2">
115<tr>
116<td class='online-navigation'><a rel="prev" title="5.2.6 Dictionary displays"
117 href="dict.html"><img src='../icons/previous.png'
118 border='0' height='32' alt='Previous Page' width='32' /></A></td>
119<td class='online-navigation'><a rel="parent" title="5.2 Atoms"
120 href="atoms.html"><img src='../icons/up.png'
121 border='0' height='32' alt='Up One Level' width='32' /></A></td>
122<td class='online-navigation'><a rel="next" title="5.3 Primaries"
123 href="primaries.html"><img src='../icons/next.png'
124 border='0' height='32' alt='Next Page' width='32' /></A></td>
125<td align="center" width="100%">Python Reference Manual</td>
126<td class='online-navigation'><a rel="contents" title="Table of Contents"
127 href="contents.html"><img src='../icons/contents.png'
128 border='0' height='32' alt='Contents' width='32' /></A></td>
129<td class='online-navigation'><img src='../icons/blank.png'
130 border='0' height='32' alt='' width='32' /></td>
131<td class='online-navigation'><a rel="index" title="Index"
132 href="genindex.html"><img src='../icons/index.png'
133 border='0' height='32' alt='Index' width='32' /></A></td>
134</tr></table>
135<div class='online-navigation'>
136<b class="navlabel">Previous:</b>
137<a class="sectref" rel="prev" href="dict.html">5.2.6 Dictionary displays</A>
138<b class="navlabel">Up:</b>
139<a class="sectref" rel="parent" href="atoms.html">5.2 Atoms</A>
140<b class="navlabel">Next:</b>
141<a class="sectref" rel="next" href="primaries.html">5.3 Primaries</A>
142</div>
143</div>
144<hr />
145<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
146</DIV>
147<!--End of Navigation Panel-->
148<ADDRESS>
149See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
150</ADDRESS>
151</BODY>
152</HTML>