Asif Rahaman has Published 58 Articles

How to generate k random dates between two other dates using Python?

Asif Rahaman

Asif Rahaman

Updated on 28-Jul-2023 14:48:44

3K+ Views

Generating random data is important in the field of data science. From building Neural Networks forecasting, stock market data, etc., often come with dates as one of the parameters. We may need to generate random numbers between the two dates for statistical analysis. This article will show how to generate ... Read More

How to Design Half-Page Carousel in Bootstrap?

Asif Rahaman

Asif Rahaman

Updated on 28-Jul-2023 14:39:15

597 Views

Carousel is a popular web designing technique used by web developers. This is a way to show a series of images or any other media content in an interactive way. These carousels are important design elements in several kinds of websites like traveling websites, Educational websites, etc., where we need ... Read More

How to design form controls for mobiles using jQuery Mobile Square-UI Theme plugin?

Asif Rahaman

Asif Rahaman

Updated on 28-Jul-2023 13:24:58

165 Views

Making web pages mobile-friendly is a challenging task for the customs form control. jQuery gives us many options to perform the task conveniently. Since smartphones are very popular devices nowadays, it is important to be able to create custom form controls which visually appealing interfaces. jQuery library of JavaScript can ... Read More

Get the Most recent previous business day using Python

Asif Rahaman

Asif Rahaman

Updated on 28-Jul-2023 12:39:24

2K+ Views

In today's fast-paced based business environment and with a huge amount of work going on around the world, developers need to analyze the dates accurately up to date. The business days are different from normal days. Business days are different from normal days. Typically the days on which office works ... Read More

Gaussian fit using Python

Asif Rahaman

Asif Rahaman

Updated on 28-Jul-2023 12:33:33

7K+ Views

Data analysis and visualization are crucial nowadays, where data is the new oil. Typically data analysis involves feeding the data into mathematical models and extracting useful information. The Gaussian fit is a powerful mathematical model that data scientists use to model the data based on a bell-shaped curve. In this ... Read More

Python - Leaf and Non-Leaf Nodes Dictionary

Asif Rahaman

Asif Rahaman

Updated on 18-Jul-2023 14:43:05

421 Views

Dictionary is an important data structure in Python which consists of key value pairs. They were originally designed to be non−iterable objects. However recently Python extended its support for iteration of the dictionary objects too. A nested dictionary has nodes, leaf, non−nodes etc. In this article we will understand how ... Read More

Python - Lambda function to find the smaller value between two elements

Asif Rahaman

Asif Rahaman

Updated on 18-Jul-2023 14:41:34

411 Views

Lambda functions are popular functions in Python which have no name. They are designed to help us when we need to apply any small operation but we know we won't be reusing the code elsewhere. In this article we will learn how to find the smaller value between two elements ... Read More

Python - Lambda Function to Check if a value is in a List

Asif Rahaman

Asif Rahaman

Updated on 18-Jul-2023 14:39:21

2K+ Views

Lambda functions in Python are nameless functions which are useful when we want to combine multiple expressions in a single line. The lambda function is convenient when we are sure that we won't be reusing the code anywhere else in the program. If however the expression is long we may ... Read More

Python - Kth Valid String

Asif Rahaman

Asif Rahaman

Updated on 18-Jul-2023 14:32:42

150 Views

Strings are important data types in any programming language. They are sequences of characters. Finding kth valid String is a programming technique in which we need to find the kth element out of a list of elements which is a valid String. In this article we will understand several methods ... Read More

Python - Kth Index Tuple List Mean

Asif Rahaman

Asif Rahaman

Updated on 18-Jul-2023 14:29:38

203 Views

Finding the Kth index tuple list is an important programming concept in Python. The problem statement is that we need to find the mean of all the elements present at the kth index of the tuple elements. The tuples would be aggregated into a list data type. Throughout this article, ... Read More

Advertisements