print "Python is better than Java."
import math
x = 5
y = math.sqrt(x)
print "y = ", round(y,5)
"""
Note: there is no need of another class here, as in Python there is no need of main class.
"""
class Room:
length = 0.0
breadth = 0.0
def getdata(self, a, b):
self.length = a
self.breadth = b
room1 = Room()
room1.getdata(14.0, 10.0)
area = room1.length*room1.breadth
print "Area = ", area
print "Hellow!"
print "Welcome to the world of Python."
print "Let us learn Python."
"""
Command line arguments cannot be taken from IPython Notebook.
Hence, example 3.5 is ignored.
"""