Page 92 - KEC Khaitan C7 Flipbook
P. 92

For example:

                      IDLE Shell 3.10.5
                   File  Edit  Format    Run   Options   Window    Help

                    >>> a=10
                    >>> b=0
                    >>> c=a/b                                                     Invalid Logic
                    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)










                   90   Premium Edition-VII
   87   88   89   90   91   92   93   94   95   96   97