Now is the time to learn Objective – C
With Apple about to announce its latest revolutionary product – the Tablet PC, its share value and earnings is bound to rise several times. But importantly, it will help many freelance programmers earn a fortune by developing apps for it. iPhone apps are developed in Objective C. However, there is an python implementation too. According [...]
Encrypt message using Python
This program makes use Caeser Cipher method for encrypting and decrypting data. From Wikipedia It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet. For example, with a shift of 3, A would be replaced by D, B would becomeE, and [...]
My first real Python program
I am really beginning to like Python Programming Language. It is quite efficient in doing lot of tasks. Unfortunately, I don’t get to devote much time for learning it. Here is the code that will calculate the square root by newton method of iterations. import random a = float(raw_input(“enter a integer”)) x = random.randint(1,a-1) while [...]
Why I decided to learn Python
I am a BSc IT student of Mumbai university. We don’t actually have to learn Python Programming language. Also you know that in India the fad is to learn Java, .NET, VB, etc. So why did I chose to learn Python? Firstly, I was impressed when I came to know that Google’s algorithms are based [...]