Youtube file
ls(1). Start ‣ Programs
<p>This is a paragraph.</p>
The date today is November 18, 2009
Look at [Melli06] for more information on the variable shape body swimmer.
An example that uses most of the list methods:
>>> a = [66.25, 333, 333, 1, 1234.5]
>>> print a.count(333), a.count(66.25), a.count('x')
2 1 0
>>> a.insert(2, -1)
>>> a.append(333)
>>> a
[66.25, 333, -1, 333, 1, 1234.5, 333]
>>> a.index(333)
1
>>> a.remove(333)
>>> a
[66.25, -1, 333, 1, 1234.5, 333]
>>> a.reverse()
>>> a
[333, 1234.5, 1, 333, -1, 66.25]
>>> a.sort()
>>> a
[-1, 1, 66.25, 333, 333, 1234.5]
Since Pythagoras, we know that
. However it must be noted that
This table is over. Now its a new one.


(1)
Euler’s identity, equation (1), was elected one of the most beautiful mathematical formulas.
<h2>This is a header.</h2> <html> </html>