Files
Python-for-Geeks/Chapter03/classes/snippets.py
T
2021-08-13 11:44:51 +05:30

13 lines
319 B
Python

#snippet.py
class Name:
def __init__(self):
self.first = "John"
class Name:
#class attributes
c_name_length = 80
#constructor
def __init__(self, first, last):
self.i_first = first #i_first is an instance attribute
self.i_last = last #i_last is an instance attribute