How to match a pattern and String without using regular expressions in Python

By Monish C

Hello learners, here we are going to learn how to match a pattern and string without regular expressions (regex) in Python. Some may get wrong in understanding the title. Let us se.... Read More

Implementation of Perceptron Algorithm for OR Logic with 2-bit binary input in Python

By Abuzer Malvi

The Perceptron algorithm is considered to be the simplest type of Artificial Neural Network and one can use it as the starting point in ANN. Perceptrons can deal with n number of i.... Read More

Design a program to Count numbers that don’t contain 3 in Python

By Avantika Singh

Hello Learners, today we are going to design a program that can count numbers that don’t contain 3 in it using Python. From this Python tutorial, you can learn how to count n.... Read More

How to Import other Python files in a Program

By Avantika Singh

Hello Learners, today we are going to learn how to import other Python files in a program. It is easy to import other files in your Python code. It just takes one or two steps and .... Read More

How to call a Nested function: Python nested function Call!

By Avantika Singh

Hello Learners, today we will learn how to call a nested function in Python with this small tutorial. Just like nested loops or conditions, nested functions are nothing but functio.... Read More

WeakHashMap in Java

By Shradha Jadhav

In the given tutorial, we will see the WeakHashMap class from the java.util package and the usage in Java. WeakHashMap exclusively saves weak references into its keys. This the imp.... Read More

Introduction to Vectors in Java : Insertion and Deletion!

By Avantika Singh

Hello Learners, today we are going to learn about vectors in Java. Different operations on vectors like insertion, deletion, search operation, etc. The Vector is a class in java.ut.... Read More

Console reader() and writer() methods in Java with examples

By Shradha Jadhav

In the given tutorial, we are going to learn about reader() and writer() methods of Console class in Java. reader() :   Syntax : public Reader reader() The java.io.Console.rea.... Read More