Featured Post

Best Practices for Handling Duplicate Elements in Python Lists

Image
Here are three awesome ways that you can use to remove duplicates in a list. These are helpful in resolving your data analytics solutions.  01. Using a Set Convert the list into a set , which automatically removes duplicates due to its unique element nature, and then convert the set back to a list. Solution: original_list = [2, 4, 6, 2, 8, 6, 10] unique_list = list(set(original_list)) 02. Using a Loop Iterate through the original list and append elements to a new list only if they haven't been added before. Solution: original_list = [2, 4, 6, 2, 8, 6, 10] unique_list = [] for item in original_list:     if item not in unique_list:         unique_list.append(item) 03. Using List Comprehension Create a new list using a list comprehension that includes only the elements not already present in the new list. Solution: original_list = [2, 4, 6, 2, 8, 6, 10] unique_list = [] [unique_list.append(item) for item in original_list if item not in unique_list] All three methods will result in uni

Python Default Argument is Self Why do We Need it

Python self as default argument, here is the reason. Below, you will find an example and the importance of self-argument.


python self as default argument

Structure of a class

The default argument is self. The self-argument states the function belongs to the class that we refer to here. Access to class members' details of one member to another is possible through self-argument. So self-argument is mandatory.


class <name of the class>:
def <function name>(<arguments>):
...
<members>


Self Argument

A python class consists of methods these also called functions. The default self-argument you need to supply in all the class methods .

Python class with self argument

class employee: 
    def getdata(self): 
         self.name=input('Enter name\t:') 
         self.age=input('Enter age\t:') 
   def putdata(self): 
         print('Name\t:',self.name)
         print('Age\t:',self.age) 

e1=employee() 
e1.getdata() 
e1.putdata()


Python class same code

Output from python class

Here, I have Imported my .py  module to the Python3 shell. It ran automatically. You may get syntax errors while importing, those you need to fix if any.


Here is list of commands to run Python class


References

Comments

Popular posts from this blog

Explained Ideal Structure of Python Class

6 Python file Methods Real Usage

How to Decode TLV Quickly