Boston Python Workshop 3/Friday/Tutorial: Difference between revisions

Content added Content deleted
imported>Jesstess
imported>Jesstess
Line 287: Line 287:


<pre>
<pre>
string = "Hello"
print len("Hello")
len(string)
print len("")
print len("")
fish = "humuhumunukunukuapuaʻa"
print "The length of triskaidekaphobia is", len("triskaidekaphobia")
print fish, "is a Hawaiian fish whose name is ", len(fish), "letters long."
</pre>
</pre>