python_03
python_03
1.
usdollar =int(input("Enter Dallar Amount"))
Indrup = usdollar*83
print("Indian Rupee",Indrup)
output:
3.
a =int(input("Enter a Number"))
sq=a**0.5
print("square Root Of Number Is",sq)
output :
4.
Length =int(input("Enter the Length"))
Breadth =int(input("Enter the Breadth"))
Area=Length*Breadth
print(Area)
output :
5.
s =int(input("Enter the side="))
print("area of square is =",s*s)
print("perimeter of square is ="(4*s))
output:
6.
r =int(input("Enter Radius=="))
h=int(input("Enter Height"))
sv =3.14*r*r*h
ac=2*3.14*r*(r+h)
print("surface area ",sv)
print("Area of cylinder ",ac)
output :