Featured Post

Python Logic to Find All Unique Pairs in an Array

Image
 Here's the Python logic for finding all unique pairs in an array that sum up to a target value. Python Unique Pair Problem Write a Python function that finds all unique pairs in an array whose sum equals a target value. Avoid duplicates in the result. For example: Input: arr = [2, 4, 3, 5, 7, 8, 9] , target = 9 Output: [(2, 7), (4, 5)] Hints Use a set for tracking seen numbers. Check for complements efficiently. Example def find_unique_pairs(arr, target):     """     Finds all unique pairs in the array that sum up to the target value.     Parameters:     arr (list): The input array of integers.     target (int): The target sum value.     Returns:     list: A list of unique pairs that sum to the target value.     """     seen = set()     pairs = set()     for num in arr:         complement = target - num         if complement in seen:...

How to Write Class Object in Ubuntu Python

Python supports object-oriented programming, which makes python powerful. Creating class in Ubuntu python explained. You can use it in different ways by assigning it to an object. Doing all these are explained in the below steps.
 

Here is a logic you can create a script with Class and Objects


Writing Class in Python in 3 Steps


  1. Python code
  2. Write the code in script
  3. Execute script

Writing Class in Python


Below sample code my give indentation errors. However, I have corrected the code in the actual script.


class Employee:
"""Base class"""
empCount = 0


def __init__(self, name, salary):
self.name = name
self.salary = salary
Employee.empCount += 1


# can also be written as Employee.empCount = Employee.empCount + 1
def displayEmployee(self): # function is defined here
print "Name : ", self.name, ", Salary: ", self.salary


# "emp1 is the first object of Employee class"
emp1 = Employee("Akhil", 2000)


# "emp2 is the second object of Employee class"
emp2 = Employee("Suresh", 5000)
emp1.displayEmployee()
emp2.displayEmployee()
print ("Total Employee %d" % Employee.empCount)

Python Script


You need to use vim command to create a script in Ubuntu.  You can do any Linux operating system for practice.


$ vim poly.py


Python Class and Object in a Script


Logic:
 

In python,' init' is a mandatory method with 'self' you need to give. The arguments 'name' and 'salary' are optional to you. Here I used two objects of Employee - emp1 and emp2. The Employee is the base class.


These objects used the "displayEmployee" method. According to the print definition, you got the below output details.


The last print has two characters. One is %d and %. The %d, pads a blank. If you want more, you can write %2d, %3d, and so on.

Executing script


From Python Console, get the .py module using the "import" command. It runs as and when the import completes.

  • The command to import is - >>> import poly.py
  • When I imported, it displayed the messages as expected.

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

SQL Query: 3 Methods for Calculating Cumulative SUM

Big Data: Top Cloud Computing Interview Questions (1 of 4)