Featured Post

15 Python Tips : How to Write Code Effectively

Image
 Here are some Python tips to keep in mind that will help you write clean, efficient, and bug-free code.     Python Tips for Effective Coding 1. Code Readability and PEP 8  Always aim for clean and readable code by following PEP 8 guidelines.  Use meaningful variable names, avoid excessively long lines (stick to 79 characters), and organize imports properly. 2. Use List Comprehensions List comprehensions are concise and often faster than regular for-loops. Example: squares = [x**2 for x in range(10)] instead of creating an empty list and appending each square value. 3. Take Advantage of Python’s Built-in Libraries  Libraries like itertools, collections, math, and datetime provide powerful functions and data structures that can simplify your code.   For example, collections.Counter can quickly count elements in a list, and itertools.chain can flatten nested lists. 4. Use enumerate Instead of Range     When you need both the index ...

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)