-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFunction.py
99 lines (69 loc) · 1.96 KB
/
Function.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
def calculateTotal(exp):
total = 0
for item in exp:
total = total + item
return total
manoj_exp = [2100,3650,9812]
vishal_exp = [1230,3234,1245]
manoj_total = calculateTotal(manoj_exp)
vishal_total = calculateTotal(vishal_exp)
print("Manoj Total Expense:",manoj_total)
print("Vishal Total Expense:",vishal_total)
print('\n')
# another example
def sum(a,b):
print("a:",a)
print("b:",b)
total = a+b
print("total inside function:",total)
return total
n = sum(5,6)
print("total outside function:",n)
print('\n')
# default argument
def printinfo( name, age = 35 ):
print("Name: ", name)
print("Age ", age)
#return
printinfo( age=50, name="miki" )
printinfo( name="miki" )
print('\n')
# arguments are two type
#1) Positional Argument 2) Named Arguments
# Global and Local Variable
total = 0; # Global variable
def sum(a,b):
print("a:",a)
print("b:",b)
total = a+b # local variable
print("total inside function: i.e local variable",total)
return total
n = sum(b=8,a=12)
print("total outside function: i.e global variable",total)
print('\n')
# defualt variable
def mul(a,b=0):
print("a:",a)
print("b:",b)
multiplication = a * b
print("multiplication inside function:",multiplication)
return multiplication
m=mul(5) # passed only 1 argument
print("Multiplication outside function:",m)
print('\n')
# Document string for explaining purpose of variables
def mul(a,b=0):
print("a:",a)
print("b:",b)
"""
This function takes two arguments which are integer numbers and
it will return multiplication of them as an output
:param a:
:param b:
:return
"""
multiplication = a * b
print("multiplication inside function:",multiplication)
return multiplication
m=mul(5,5154) # passed only 1 argument
print("Multiplication outside function:",m)