-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTerms_2.html
169 lines (152 loc) · 7.13 KB
/
Terms_2.html
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>PythonPythonME</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta content="Python,Programming" name="keywords" />
<meta content="Learn Python Programming" name="description" />
<meta name="generator" content="thesitewizard.com's Layout Wizard 3.0.1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="all" href="styles.css" />
<style type="text/css">
.auto-style1 {
text-align: center;
}
.auto-style2 {
font-family: Georgia, "Times New Roman", Times, serif;
text-align: center;
}
.auto-style3 {
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
text-align: center;
font-size: x-large;
}
.auto-style6 {
font-family: Georgia, "Times New Roman", Times, serif;
text-align: center;
font-size: large;
}
.auto-style4 {
font-family: "Times New Roman", Times, serif;
font-size: large;
}
.auto-style12 {
font-family: Georgia, "Times New Roman", Times, serif;
text-align: center;
font-size: large;
color: #1829BB;
}
.auto-style13 {
font-size: xx-large;
}
.auto-style14 {
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
</style>
</head>
<body>
<div id="tswcontainer">
<div id="tswheader">
<!-- start of header section: insert your logo, etc, here -->
<p class="auto-style1">
<img alt="Logo" src="PythonPythonME.png" style="border-radius: 5px; width: 306px; height: 234px; background-color: #FFFFFF;" /></p>
<p class="auto-style3"><span lang="en-in"><strong>Important Terms</strong></span></p>
<!-- end of header section: insert your logo, etc, above this line -->
</div>
<div id="tswcontent">
<div id="tswcontproper">
<!-- start of content column: insert your content here -->
<span class="auto-style14">
<p>A named series of statements that performs some useful operation is
referred to as a <strong>function</strong>. </p>
<p>Functions <span lang="en-in">sometimes </span>can take or don't take
arguments<span lang="en-in">. Similarily, </span>they can generate or
don't provide a result.</p>
<p><strong>function definition</strong>: A statement that specifies the
name, parameters, and statements that make up a new function.</p>
<p>A value formed by a function definition is referred to as a<strong>
function object</strong>. The function's name is a variable that points
to a function object.</p>
<p>The first line of a function definition is called the <strong>header</strong>.</p>
<p>The sequence of statements within a function definition is referred
to as the<strong> body</strong>.<br />
<br />
<span lang="en-in"><strong>P</strong></span><strong>arameter</strong>: A
name given to the value delivered as an argument in a function.<br />
<br />
A <span lang="en-in">S</span>tatement that performs a function is
referred to as a <strong>function call</strong>. The function name is
followed by a list of arguments in parentheses.<br />
<br />
When a function is called, it is given a value as an <strong>argument</strong>.
This value is assigned to the function's appropriate parameter.<br />
<br />
A <strong>variable</strong> <em>defined within a function</em> is
referred to as a local variable. A local variable can only be used
within the function in which it was created.<br />
<br />
The outcome of a function is its <strong>return value</strong>. When a
function call is used as an expression, the result is the expression's
value.</p>
<p>A function that returns a value is called a <strong>fruitful function</strong>.<br />
<br />
A function that always returns None is known as a <strong>void function</strong>.<br />
<br />
<strong>None</strong> is a particular value that void functions return.<br />
<br />
A <strong>module </strong>is a file that contains a group of related
functions and definitions.<br />
<br />
A statement that reads a module file and constructs a module object is
known as an <strong>import statement</strong>.<br />
<br />
A value formed by an import statement that allows access to the values
defined in a module is referred to as a <strong>module object</strong>.<br />
<br />
The <em>syntax</em> for invoking a function in another module by
supplying the module name, a dot (period), and the function name in
<strong>dot notation</strong>.<br />
<br />
Using an expression as part of a larger expression or a statement as
part of a larger statement is known as <strong>composition</strong>.<br />
<br />
The sequence in which the statements are executed is called the <strong>
execution flow</strong>.</p>
<p> </p>
</span>
<!-- end of content column: put your content above this line -->
</div>
</div>
<div id="tswsidecol">
<div id="tswsideproper">
<p class="auto-style12">
<strong><span class="auto-style13">Content</span></strong>
</p>
<p class="auto-style6">
<a href="index.html">PythonPythonME</a></p>
<p class="auto-style6"><span lang="en-in">
<a href="Running%20Python.html">Running Python</a></span></p>
<p class="auto-style6"><span lang="en-in"><a href="Variables.html">
Variables</a></span></p>
<p class="auto-style6"><span lang="en-in"><a href="Functions.html">
Functions</a></span></p>
<p class="auto-style6"><span lang="en-in"><a href="Terms_2.html">Terms</a></span></p>
<!-- end of side column: put your navigation menu, etc, above this line -->
</div>
</div>
<div style="clear: both;" class="auto-style1"><span lang="en-in">
<a href="Terms_1.html"><strong>1</strong></a> <a href="Terms_2.html">
<strong>2</strong></a></span><br />
<span lang="en-in">
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span><br />
<img alt="Footer " height="64" src="images/star-line-divider-design-footer-modern-border-vector-23980591.png" width="1118" /><br />
<span lang="en-in">
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</span><br />
</div>
</div>
<p class="auto-style2">Copyright
<span class="auto-style4" style="color: rgb(0, 0, 0); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">
© 2022-2023. Anoop Johny. </span>All Rights Reserved.</p>
</body>
</html>