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

Your drawings are Objects in GDI+

Hi all .Net developers and programmers. If you’re a .Net developer or a programmer you must have heard of the Drawing namespace in System namespace, and you maybe used it to draw in your applications. For those who used them they must have found that moving a single shape in a scene using simple code is not that easy, you’ll have to redraw the whole scene with the shape in its new location, the same thing happens for rotating and scaling a shape, so I had an idea, “Why can’t we just write Rectangle.Move(X,Y) and it moves? Why should I remember every shape coordinates to redraw a small shape in a new position?” so I answered the question. ...

June 12, 2007 · 2 min · Abdullah Diab