Final Assignment 1 Python
Final Assignment 1 Python
(PCC-CS393)
CSE – 3rd Sem. – 2nd Year
Program
i.
a=int(input("\n\tEnter the value of a:"))
b=int(input("\n\tEnter the value of b:"))
c=a
a=b
b=c
print("\n\tSwap value of a and b:",a,b)
OUTPUT
Program
OUTPUT
2. Write a Program in Python to Make a Simple Calculator (Taking two Inputs &
calculate their Addition, Subtraction. Multiplication, Division).
Program
Output
3. Write a Program in Python to find out the Area & Circumference of a Circle.
Program
Output
Program
Output