Page 155 - TrackpadV5.1_class7
P. 155

For example:
                     IDLE Shell 3.10.5

                  File  Edit  Format   Run    Options  Window     Help

                  >>> a=10
                  >>> b=0
                                                                                 Invalid Logic
                  >>> c=a/b
                                                                                 t
                  Traceback (most recent call last):
                      File "<pyshell#5>", line 1, in <module>
                       c=a/b
                      ZeroDivisionError: division by zero





                           SOME MORE PROGRAMS


                 1.  Write a program to take distance in Kilometres and convert it into Meters.

                     Program1.py
                  File  Edit  Format   Run    Options   Window    Help

                  #Take distance in kilometer from the user
                  km=float(input("Enter distance in kilometres "))

                  m=km*1000
                  print("Distance in meters is ", m)




                     Output

                  Enter distance in kilometres 10
                  Distance in meters is  10000.0




                 2.   Write a program to take the length and width of a rectangle as input and calculate its area.

                     Program1.py
                  File  Edit  Format   Run    Options   Window    Help

                  #Program to calculate the area
                  l=int(input("Enter the Length "))

                  w=int(input("Enter the Width "))
                  area= l * w
                  print("Area of the Rectangle is : ", area)







                                                                                    Tokens and Data Types in Python  153
   150   151   152   153   154   155   156   157   158   159   160