Hello Friends. In Our Previous Blog , We have Learned the Basics of Python Programming Language & Different Program in Python Programming Language. In Today's Blog We Will Create Some Basic Methods In Python Programming Language. Create Some Different Methods in Python Programming Language. Program #Create Different Methods In Python Programming Language. def swap(a,b): a=a+b b=a-b a=a-b print("First Value = ",a) print("Second Value = ",b) def arth(): c=a+b print("Addition = \t",c) c=a-b print("Substraction = \t",c) c=a*b print("Multiplication = ",c) c=a//b print("Division = \t",c) c=a%b print("Reminder = \t",c) def comp(): if a>b: print("First Value is Greater = \t",a) eli...
Easily Learn Python Programming Language & his Programs