Page 152 - TrackpadV2.1_Class8
P. 152
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.
Program2.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)
150 Trackpad (V2.1)-VII

