Find odd digits in an integer value in Python

By Jyoshika Kandregula

The below explanation make you understand to how to find odd digits in an integer value in Python. For example, if the input number is 12345, the output would be the digits 1, 3, a.... Read More

Get list of values from a dictionary in Python

By Chinta Anagha Sree

In this tutorial, you will learn how to get a list of values from a dictionary in Python.   Introduction: In Python, a dictionary is a group of key-value pairs in which each k.... Read More

Get Query String variable in Expressjs

By PATEL AAYUSH HARESHBHAI

In this blog, we’ll learn how to handle route parameters in an Express.js application.   Handling Route Parameters in Express js when making a server side application wi.... Read More

Toggle Password Visibility Using JavaScript

By PATEL AAYUSH HARESHBHAI

In this article we will discuss how to add show password functionality in HTML form using JS.   Password Visibility using Javascript. In this article we will see how we can to.... Read More

Perform CRUD in Mongodb with Expressjs

By PATEL AAYUSH HARESHBHAI

In this article will discuss about CRUD operations in MongoDB. CRUD Operations it is CREATE,READ,UPDATE,DELETE these are the operations that user will use to do ceratin operations .... Read More

How to Connect Mongodb database in Express

By PATEL AAYUSH HARESHBHAI

In this blog we will see how to connect Mongodb database in express. MongoDB is a NoSQL database used to store large amounts of data without any traditional relational database tab.... Read More

How to receive post parameter in Express.js

By PATEL AAYUSH HARESHBHAI

How you can receive parameter in post method using express can be use by inbuilt middleware name express.urlencoded() and req.body Object.    How to Receive Post Parameter in.... Read More

Append to file using savetxt() in NumPy

By Chinta Anagha Sree

In this tutorial, you will learn how to append data to a file using savetxt() in Python. Introduction: A NumPy function called savetxt() is used to save an array to a text file. Th.... Read More