how to make a boolean function in python code example
Example 1: how to make a calculator in python
class Calculator:
def addition(a,b):
return a + b
def subtraction(a,b):
if a<b:
return b - a
else:
return a - b
def multiplication(a,b):
return a * b
def division(a,b):
if a<b:
return b / a
else:
return a / b
<C:/Users/username>python
>>> from main import Calculator
>>> result = Calculator.[addition|subtraction|multiplication|division](anyNumber, anyNumber)
>>> print(result)
Example 2: how to make a function in python
def test_function(argument1,argument2,argument3) :
print(argument1)
print(argument2)
print(argument3)
test_function('Hello','World','!')
'''
Hello
World
!
'''
Example 3: python bool()
x = bool(1)