Mohd Mohtashim has Published 294 Articles

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

Mohd Mohtashim

Mohd Mohtashim

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

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

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 - iter() method

Mohd Mohtashim

Mohd Mohtashim

Updated on 16-May-2020 10:48:35

Python inter() basically creates an iterator object, which can be used to iterate on iterables. Let's try to understand what it is iterator and iterables. Iterator − An iterator is an object that contains a countable number of values which can be iterated on iterables. Iterables: An iterables is basically ... Read More

Python - int() function

Mohd Mohtashim

Mohd Mohtashim

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

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

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

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

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

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

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

Multithreaded Priority Queue in Python

Mohd Mohtashim

Mohd Mohtashim

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

The Queue module allows you to create a new queue object that can hold a specific number of items. There are following methods to control the Queue −get() − The get() removes and returns an item from the queue.put() − The put adds item to a queue.qsize() − The qsize() returns the ... Read More

1 2 3 4 5 ... 30 Next
Advertisements