Learning Python
by Vijay Kiran
Learning python was one of my goals. According to pragmatic programmer, one should learn atleast one new programming language every year and should read atleast one technology book a month. So, finally, I started off with Dive into Python online book. And here comes the HelloWorld python program.
#Program to print the name and website
def printName(params):
return “Hello! My name is %s, \
My website URL is : %s” %(params[0], params[1])
if __name__ == “__main__”:
myParams = (“Vijay Kiran”, “www.VijayKiran.com”)
print printName(myParams)
Google Code Jam registration is now open, and this time I really want to participate. Let me see even if get through the qualification round. Instead of Java (with which I’m more comfortable) I want to use python. This short term goal should certainly catalyze my python learning.
