Mohd Mohtashim has Published 251 Articles

Creating Instance Objects in Python

Mohd Mohtashim

Mohd Mohtashim

Updated on 29-Aug-2023 03:34:56

28K+ Views

To create instances of a class, you call the class using class name and pass in whatever arguments its __init__ method accepts."This would create first object of Employee class" emp1 = Employee("Zara", 2000) "This would create second object of Employee class" emp2 = Employee("Manni", 5000)You access the object's attributes using the dot ... Read More

Updating Lists in Python

Mohd Mohtashim

Mohd Mohtashim

Updated on 26-Aug-2023 03:40:31

36K+ Views

You can update single or multiple elements of lists by giving the slice on the left-hand side of the assignment operator, and you can add to elements in a list with the append() method.Example Live Demo#!/usr/bin/python list = ['physics', 'chemistry', 1997, 2000]; print "Value available at index 2 : " print ... Read More

How to create an image to zoom with CSS and JavaScript?

Mohd Mohtashim

Mohd Mohtashim

Updated on 16-Feb-2021 06:41:53

712 Views

Following is the code to create an image zoom:Example Live Demo    * {box-sizing: border-box;}    .img{       display: inline-block;    }    .img-zoom-container {       position: relative;    }    .img-zoom-zoomLens {       position: absolute;       border: 1px ... Read More

Insert the string at the beginning of all items in a list in Python

Mohd Mohtashim

Mohd Mohtashim

Updated on 16-May-2020 10:50:38

245 Views

In this post we need to enter the string at the beginning of all items in a list. For ex: We're given string = "Tutorials_Point" and List contains multiple element such as "1", "2" etc. So in this we need to add Tutorials_Point in front of "1", "2" and so on.ExampleAproach ... Read More

Python - int() function

Mohd Mohtashim

Mohd Mohtashim

Updated on 16-May-2020 10:45:43

3K+ Views

Python int() function converts the specified value into an integer number.The int() function will returns an integer object constructed from a number or string let say x, or return 0 if no argum ents are specified.Syntaxint(value, base) int(x, base=10)value = A number or a string that can be converted into ... Read More

Python - Insert list in another list

Mohd Mohtashim

Mohd Mohtashim

Updated on 16-May-2020 10:39:54

220 Views

A list also the extend() method, which appends items from the list you pass as an argument. extend() − Python list method extend() appends the contents of seq to list. You can read more about it here "https://www.tutorialspoint.com/python/list_append.htm"Now let us see hands onExample Live Demo#append first_list = [1, 2, 3, 4, ... Read More

Python - Increasing alternate element pattern in list

Mohd Mohtashim

Mohd Mohtashim

Updated on 16-May-2020 10:37:27

79 Views

In this we are going to use List Comprehension with enumerate() Python provides compact syntax for deriving one list from another. These expressions are called list comprehensions.List comprehensions are one of the most powerful tools in Python. Python’s list comprehension is an example of the language’s support for functional programming ... Read More

Tkinter Programming in Python

Mohd Mohtashim

Mohd Mohtashim

Updated on 31-Jan-2020 10:34:19

1K+ Views

Tkinter is the standard GUI library for Python. Python when combined with Tkinter provides a fast and easy way to create GUI applications. Tkinter provides a powerful object-oriented interface to the Tk GUI toolkit.Creating a GUI application using Tkinter is an easy task. All you need to do is perform ... Read More

Parsing XML with DOM APIs in Python

Mohd Mohtashim

Mohd Mohtashim

Updated on 31-Jan-2020 10:32:17

2K+ Views

The Document Object Model ("DOM") is a cross-language API from the World Wide Web Consortium (W3C) for accessing and modifying XML documents.The DOM is extremely useful for random-access applications. SAX only allows you a view of one bit of the document at a time. If you are looking at one ... Read More

Parsing XML with SAX APIs in Python

Mohd Mohtashim

Mohd Mohtashim

Updated on 31-Jan-2020 10:30:33

5K+ Views

SAX is a standard interface for event-driven XML parsing. Parsing XML with SAX generally requires you to create your own ContentHandler by subclassing xml.sax.ContentHandler.Your ContentHandler handles the particular tags and attributes of your flavor(s) of XML. A ContentHandler object provides methods to handle various parsing events. Its owning parser calls ContentHandler methods ... Read More

1 2 3 4 5 ... 26 Next
Advertisements