forked from springcoil/code_py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions_basics.py
107 lines (88 loc) · 2.62 KB
/
functions_basics.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
100
101
102
103
104
105
106
107
# Functions Basics
# Based on Byte of Python
# Create a function called printMax with the paramaters x and y.
def printMax(x, y):
# if a is larger than b
if x > y:
# then print this
print(x, 'is maximum')
# if a is equal to b
elif x == y:
# print this
print(x, 'is equal to', y)
# otherwise
else:
# print this
print(y, 'is maximum')
# Run the function with two arguments
printMax(3,4)
# Note: By default, variables created within functions are local to
# the function. But you can create a global function that IS defined outside
# the function.
# Create a variable called x
x = 50
# Create a function called func()
def func():
# Create a global variable called x
global x
# Print this
print('x is', x)
# Set x to 2.
x = 2
# Print this
print('Changed global x to', x)
# Run the func() function
func()
# Print x
print(x)
# Default Argument Values
# Create a function called say() that displays x with the default value of 1
def say(x, times = 1, times2 = 3):
print(x * times, x * times2)
# Run the function say() with the default values
say('!')
# Run the function say() with the non-default values of 5 and 10
say('!', 5, 10)
# VarArgs Parameters (i.e. unlimited number of parameters)
# * denotes that all positonal arguments from that point to next arg are used
# ** dnotes that all keyword arguments from that point to the next arg are used
# Create a function called total() with three parameters
def total(initial=5, *numbers, **keywords):
# Create a variable called count that takes it's value from initial
count = initial
# for each item in numbers
for number in numbers:
# add count to that number
count += number
# for each item in keywords
for key in keywords:
# add count to keyword's value
count += keywords[key]
# return counts
return count
# Run total().
# 10 is for initial.
# 1,2,3 are for *numbers.
# vegetables and fruit is for **keywords.
print(total(10, 1, 2, 3, vegetables=50, fruits=100))
# DocStrings (outputs documentation about a function)
# Create a function called printMax with the paramaters x and y.
def printMax(x, y):
# Create the docstring
'''Prints out the maximum of two values'''
# if a is larger than b
if x > y:
# then print this
print(x, 'is maximum')
# if a is equal to b
elif x == y:
# print this
print(x, 'is equal to', y)
# otherwise
else:
# print this
print(y, 'is maximum')
# Run the function with two arguments
printMax(3,4)
# View the docstring
print(printMax.__doc__)