I’m Learning Python (part 5)

I’m Learning Python (part 5) <p> <img title="Python Logo" src="http://www.python.org/images/python-logo.gif" alt="Python Logo" /> </p> String Is Immutable? Last time I told you to try to change a specified character, you must have failed if you tried: >>> s[0] = ‘c’ The error you’d get is: TypeError: ‘str’ object does not support item assignment This means that strings are immutable, so are core-types, numbers and tuples, they can’t be changed, while lists and dictionaries can be changed freely. ...

October 29, 2008 · 5 min · Abdullah Diab

I’m Learning Python part 4

I’m Learning Python (part 4) <p> <img title="Python Logo" src="http://www.python.org/images/python-logo.gif" alt="Python Logo" /> </p> Why Use Built-In Types? Most of the time in programming you’ll use lists, stacks, arrays, queues and dictionaries, so instead of constructing them, Python gives you a bunch of built-in types to use. The built-in types implement the semantic of the type ADT (Abstract Data Type), and they are fast, ‘cuz some of them are written in C and C++. ...

October 15, 2008 · 4 min · Abdullah Diab

I’m Learning Python part 3

I’m Learning Python (part 3) <p> <img title="Python Logo" src="http://www.python.org/images/python-logo.gif" alt="Python Logo" /></div> <h1 style="font-family: Georgia;"> What Is Interactive Mode? </h1> <p> When you install Python on your platform you&#8217;ll find an executable called &#8216;python&#8217;, when you run it you&#8217;ll find a terminal and you&#8217;ll see something like the following:<br /> <em>Python 2.6 (r26:66721, Oct 2 2008, 11:35:03) [MSC v.1500 32 bit (Intel)] on win32<br /> Type &#8220;help&#8221;, &#8220;copyright&#8221;, &#8220;credits&#8221; or &#8220;license&#8221; for more information.<br /> >>></em><br /> This is called interactive coding (or interactive mode), here you can write Python statements and the interpreter will execute them directly, let&#8217;s try:<br /> <em>>>> print &#8220;I Love Python&#8221;<br /> I Love Python<br /> >>> print 2 ** 10<br /> 1024<br /> >>></em><br /> ...

October 10, 2008 · 6 min · Abdullah Diab

I’m Learning Python part 2

I’m Learning Python (part 2) <p> <img title="Python Logo" src="http://www.python.org/images/python-logo.gif" alt="Python Logo" /> </p> Who Uses Python? In the world there are more than 1 million Python user, that’s because it’s open source, and because it is implemented for every platform, and it comes included within Linux distributions and Macintosh computers and more. Google uses Python in its web search system, and it employs the Python’s creator. YouTube is largely written in Python. BitTorrent file sharing system is a Python program. Intel, Cisco, HP, Seagate, Qualcomm and IB< use Python for hardware testing. Industrial Light & Magic, Pixar, and others use Python in the production of movie animation. NASA, Los Alamos, Fermilab, JPL, and others use Python for scientific programming. iRobot uses Python to develop commercial robotic vacuum cleaners 🙂 NSA uses Python for cryptography and intelligence analysis. See Python website for more. ...

October 7, 2008 · 5 min · Abdullah Diab

I’m Learning Python part 1

I’m Learning Python I’ll start posting this series of blogs on WordPress and CSC, here I’ll write what I’m gonna learn on my way to learning Python. If you don’t know what Python is, or you’ve heard about it but you’re not sure what it is, my first blog will cover it for you. ...

October 4, 2008 · 5 min · Abdullah Diab