-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpython-create-a-class.html
489 lines (410 loc) · 15 KB
/
python-create-a-class.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
<!DOCTYPE html>
<html>
<head>
<title>python-create-a-class.md</title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<style>
/* https://github.com/microsoft/vscode/blob/master/extensions/markdown-language-features/media/markdown.css */
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
body {
font-family: var(--vscode-markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif);
font-size: var(--vscode-markdown-font-size, 14px);
padding: 0 26px;
line-height: var(--vscode-markdown-line-height, 22px);
word-wrap: break-word;
}
#code-csp-warning {
position: fixed;
top: 0;
right: 0;
color: white;
margin: 16px;
text-align: center;
font-size: 12px;
font-family: sans-serif;
background-color:#444444;
cursor: pointer;
padding: 6px;
box-shadow: 1px 1px 1px rgba(0,0,0,.25);
}
#code-csp-warning:hover {
text-decoration: none;
background-color:#007acc;
box-shadow: 2px 2px 2px rgba(0,0,0,.25);
}
body.scrollBeyondLastLine {
margin-bottom: calc(100vh - 22px);
}
body.showEditorSelection .code-line {
position: relative;
}
body.showEditorSelection .code-active-line:before,
body.showEditorSelection .code-line:hover:before {
content: "";
display: block;
position: absolute;
top: 0;
left: -12px;
height: 100%;
}
body.showEditorSelection li.code-active-line:before,
body.showEditorSelection li.code-line:hover:before {
left: -30px;
}
.vscode-light.showEditorSelection .code-active-line:before {
border-left: 3px solid rgba(0, 0, 0, 0.15);
}
.vscode-light.showEditorSelection .code-line:hover:before {
border-left: 3px solid rgba(0, 0, 0, 0.40);
}
.vscode-light.showEditorSelection .code-line .code-line:hover:before {
border-left: none;
}
.vscode-dark.showEditorSelection .code-active-line:before {
border-left: 3px solid rgba(255, 255, 255, 0.4);
}
.vscode-dark.showEditorSelection .code-line:hover:before {
border-left: 3px solid rgba(255, 255, 255, 0.60);
}
.vscode-dark.showEditorSelection .code-line .code-line:hover:before {
border-left: none;
}
.vscode-high-contrast.showEditorSelection .code-active-line:before {
border-left: 3px solid rgba(255, 160, 0, 0.7);
}
.vscode-high-contrast.showEditorSelection .code-line:hover:before {
border-left: 3px solid rgba(255, 160, 0, 1);
}
.vscode-high-contrast.showEditorSelection .code-line .code-line:hover:before {
border-left: none;
}
img {
max-width: 100%;
max-height: 100%;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:focus,
input:focus,
select:focus,
textarea:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: -1px;
}
hr {
border: 0;
height: 2px;
border-bottom: 2px solid;
}
h1 {
padding-bottom: 0.3em;
line-height: 1.2;
border-bottom-width: 1px;
border-bottom-style: solid;
}
h1, h2, h3 {
font-weight: normal;
}
table {
border-collapse: collapse;
}
table > thead > tr > th {
text-align: left;
border-bottom: 1px solid;
}
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td {
padding: 5px 10px;
}
table > tbody > tr + tr > td {
border-top: 1px solid;
}
blockquote {
margin: 0 7px 0 5px;
padding: 0 16px 0 10px;
border-left-width: 5px;
border-left-style: solid;
}
code {
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
font-size: 1em;
line-height: 1.357em;
}
body.wordWrap pre {
white-space: pre-wrap;
}
pre:not(.hljs),
pre.hljs code > div {
padding: 16px;
border-radius: 3px;
overflow: auto;
}
pre code {
color: var(--vscode-editor-foreground);
tab-size: 4;
}
/** Theming */
.vscode-light pre {
background-color: rgba(220, 220, 220, 0.4);
}
.vscode-dark pre {
background-color: rgba(10, 10, 10, 0.4);
}
.vscode-high-contrast pre {
background-color: rgb(0, 0, 0);
}
.vscode-high-contrast h1 {
border-color: rgb(0, 0, 0);
}
.vscode-light table > thead > tr > th {
border-color: rgba(0, 0, 0, 0.69);
}
.vscode-dark table > thead > tr > th {
border-color: rgba(255, 255, 255, 0.69);
}
.vscode-light h1,
.vscode-light hr,
.vscode-light table > tbody > tr + tr > td {
border-color: rgba(0, 0, 0, 0.18);
}
.vscode-dark h1,
.vscode-dark hr,
.vscode-dark table > tbody > tr + tr > td {
border-color: rgba(255, 255, 255, 0.18);
}
</style>
<style>
/* Tomorrow Theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* Tomorrow Comment */
.hljs-comment,
.hljs-quote {
color: #8e908c;
}
/* Tomorrow Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
color: #c82829;
}
/* Tomorrow Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
color: #f5871f;
}
/* Tomorrow Yellow */
.hljs-attribute {
color: #eab700;
}
/* Tomorrow Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #718c00;
}
/* Tomorrow Blue */
.hljs-title,
.hljs-section {
color: #4271ae;
}
/* Tomorrow Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #8959a8;
}
.hljs {
display: block;
overflow-x: auto;
color: #4d4d4c;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
</style>
<style>
/*
* Markdown PDF CSS
*/
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif, "Meiryo";
padding: 0 12px;
}
pre {
background-color: #f8f8f8;
border: 1px solid #cccccc;
border-radius: 3px;
overflow-x: auto;
white-space: pre-wrap;
overflow-wrap: break-word;
}
pre:not(.hljs) {
padding: 23px;
line-height: 19px;
}
blockquote {
background: rgba(127, 127, 127, 0.1);
border-color: rgba(0, 122, 204, 0.5);
}
.emoji {
height: 1.4em;
}
code {
font-size: 14px;
line-height: 19px;
}
/* for inline code */
:not(pre):not(.hljs) > code {
color: #C9AE75; /* Change the old color so it seems less like an error */
font-size: inherit;
}
/* Page Break : use <div class="page"/> to insert page break
-------------------------------------------------------- */
.page {
page-break-after: always;
}
</style>
<script src="https://unpkg.com/mermaid/dist/mermaid.min.js"></script>
</head>
<body>
<script>
mermaid.initialize({
startOnLoad: true,
theme: document.body.classList.contains('vscode-dark') || document.body.classList.contains('vscode-high-contrast')
? 'dark'
: 'default'
});
</script>
<h1 id="python-classes">Python Classes</h1>
<p>Python is an <a href="https://en.wikipedia.org/wiki/Object-oriented_programming">Object Oriented Programming</a> (OOP) language. In Python, <a href="https://docs.python.org/3/tutorial/classes.html">classes</a> are used to represent a logical collection of fields and methods. Further, these classes are utilized to create objects.</p>
<p>In this article, learn how to create and use a Python class.</p>
<h2 id="what-is-a-class">What is a class?</h2>
<p>A class is a logical template to represent objects. In addition to functions or methods that perform related operations, a class can contain properties that represent state. Objects are instances of such classes representing one or more entities. The process of creating an object from a class is called instantiation. A single class can be instantiated several times representing several objects.</p>
<h4 id="example">Example</h4>
<p>Consider a class <code>PersonInformation</code> representing information of a person. <code>PersonInformation</code> class may contain personal details like <code>first_name</code>, <code>last_name</code>, <code>age</code> as fields and may include functions such as <code>print_data()</code> to print the information stored in those fields. Each person's details are stored in a single instance of the class.</p>
<h2 id="class-definition">Class definition</h2>
<p>A class is created using the keyword <code>class</code>.</p>
<h3 id="syntax">Syntax</h3>
<pre class="hljs"><code><div><span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">ClassName</span>:</span>
<span class="hljs-string">''' This is a docstring which briefly describes the class.'''</span>
<span class="hljs-comment"># fields</span>
<span class="hljs-comment"># functions</span>
<span class="hljs-comment"># more code</span>
</div></code></pre>
<h5 id="note">Note:</h5>
<ul>
<li>Class names are written in <a href="https://en.wikipedia.org/wiki/Camel_case">camel case</a>
<ul>
<li><strong>Example</strong>: <code>ClassName</code>, <code>PersonInformation</code>, <code>Country</code>, <code>TechnicalWriter</code>.</li>
</ul>
</li>
<li>Fields and methods are written in <a href="https://en.wikipedia.org/wiki/Snake_case">snake_case</a>.</li>
<li>A class may contain blocks of code representing functions or fields.</li>
<li>Its recommended to include a docstring in the beginning, which briefly describes the class's functionality.</li>
<li>You can also create a class without any statements. However, such a class is of less use.</li>
</ul>
<h3 id="sample">Sample</h3>
<pre class="hljs"><code><div><span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">PersonInformation</span>
# <span class="hljs-title">List</span> <span class="hljs-title">of</span> <span class="hljs-title">statements</span>
</span></div></code></pre>
<p>A class creates a new local <code>namespace</code> where all its attributes are defined.</p>
<h2 id="defining-class-attributes">Defining class attributes</h2>
<p>In a class, class attributes are fields defined outside the methods. They are shared across instances of the class in the same process.</p>
<h3 id="sample">Sample</h3>
<pre class="hljs"><code><div><span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">PersonInformation</span>:</span>
first_name = <span class="hljs-string">"Alex"</span>
last_name = <span class="hljs-string">"Sa"</span>
age = <span class="hljs-number">10</span>
</div></code></pre>
<h3 id="special-attributes">Special attributes</h3>
<p>There can also be special attributes that begin with double underscores <code>__</code>.</p>
<h4 id="example">Example</h4>
<ul>
<li><code> __doc__</code> gives docstring of the class.</li>
<li><code>__init__()</code> is the constructor of the class.</li>
<li><code>__str__()</code> return human-readable representation of the class.</li>
</ul>
<h2 id="creating-an-object">Creating an object</h2>
<p>Once a class is defined, you can create an object by instantiating it. Object creation is similar to a function call.</p>
<h3 id="syntax">Syntax</h3>
<pre class="hljs"><code><div>objectName = ClassName()
</div></code></pre>
<p>This creates a new object instance, <code>objectName</code>, which can be used to access the attributes.</p>
<h3 id="sample">Sample</h3>
<pre class="hljs"><code><div>person_information_object = PersonInformation()
print(PersonInformation.first_name)
</div></code></pre>
<h3 id="output">Output</h3>
<pre class="hljs"><code><div>Alex
</div></code></pre>
<h2 id="defining-class-methods">Defining class methods</h2>
<p>Methods are functions you can define to access, modify and perform operations on these attributes.</p>
<h3 id="syntax">Syntax</h3>
<pre class="hljs"><code><div><span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">ClassName</span>:</span>
<span class="hljs-string">''' This is a docstring which briefly describes the class.'''</span>
<span class="hljs-comment"># variables</span>
<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">__init__</span><span class="hljs-params">(self, argument <span class="hljs-number">1</span>, ..., argument n)</span>:</span>
<span class="hljs-comment"># more code</span>
<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">function_name</span><span class="hljs-params">(self, argument <span class="hljs-number">1</span>, ..., argument n)</span>:</span>
<span class="hljs-comment"># more code</span>
</div></code></pre>
<h3 id="self-parameter"><code>self</code> parameter</h3>
<ul>
<li>The <code>self</code> parameter is the first parameter of any instance-level method. It's name is written in snake case by convention.</li>
<li>Its a reference to the current instance of the class and is used to access instance attributes or methods. It can also be used to refer to class-level attributes or methods.</li>
</ul>
<h3 id="init-function"><code>__init__()</code> function</h3>
<p>All classes have a built-in function <code>__int__()</code> that automatically executes when a class is initiated. You can use this function to assign values to class attributes at runtime. This type of function is known as a constructor in OOP.</p>
<p>Let's use the above <a href="#sample-1">sample code</a> with <code>__init__()</code> and a method.</p>
<h3 id="sample---try-this">Sample - <a href="https://replit.com/@AlekhyaSasi/Person-information-class?lite=true#main.py">Try this</a></h3>
<pre class="hljs"><code><div><span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">PersonInformation</span>:</span>
<span class="hljs-string">''' This is a class with personal information such as first name, last name, and age.'''</span>
<span class="hljs-comment"># Define an init method with variables to obtain values at runtime.</span>
<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">__init__</span><span class="hljs-params">(self, first_name, last_name, age)</span>:</span>
self.first_name = first_name
self.last_name = last_name
self.age = age
<span class="hljs-comment"># Define a method to display the values.</span>
<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">print_data</span><span class="hljs-params">(self)</span>:</span>
print(<span class="hljs-string">"Person information:"</span>)
print(<span class="hljs-string">f'Name: <span class="hljs-subst">{self.first_name}</span> <span class="hljs-subst">{self.last_name}</span>'</span>)
print(<span class="hljs-string">f'Age: <span class="hljs-subst">{self.age}</span>'</span>)
<span class="hljs-comment"># Intializing an object.</span>
person_information = PersonInformation(<span class="hljs-string">"Alex"</span>, <span class="hljs-string">"Sa"</span>, <span class="hljs-number">10</span>)
person_information.print_data()
</div></code></pre>
<h3 id="output">Output</h3>
<pre class="hljs"><code><div>Person information:
Name: Alex Sa
Age: 10
</div></code></pre>
<h2 id="conclusion">Conclusion</h2>
<p>In this article, you can learn the basic concepts of classes in Python. You can also view code samples to write a class containing methods.</p>
<p>Stay tuned for more informative articles.</p>
</body>
</html>