Home | Computer Science

<
Python

Program

Write a program using Arthmetic (+,-)


Program
INPUT

print(10+20.5) a=10 b=20 c=a-b print(c)

OUTPUT

<
Program

Program

Write a program using arthmetic operator * /


Program
INPUT

print(10*20.5) a=10 b=20 c=a/b print(c)

OUTPUT