Operator Module in Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will learn more about the operator module and its related functions in Python. The Operator module in Python has many predefined functions wh.... Read More

How to move an object with keyboard in Unity 3D

By Y SAI KIRAN

Hello programmers, In this article, I will show “How to move an object with the keyboard in Unity 3d” While creating any game the essential element of a 3D game is to move its .... Read More

Find the maximum element of a Vector using STL in C++

By Udaya sri Pothula

In this tutorial, we will be learning about how to find the maximum element of a vector using STL (Standard Template Library) in C++. Basically, we just traverse the whole vector a.... Read More

How to close the JFrame window programmatically in Java

By Subhojeet Ghosh

In this tutorial, we will learn the various methods and techniques by which a JFrame window can be closed programmatically in Java. There are many ways by which we can close the JF.... Read More

How to Display Factors of a Number in C++

By Udaya sri Pothula

In this tutorial, we will be learning about how to display the factors of a number in C++. Displaying factors of a number in C++ Before moving into displaying factors of a number, .... Read More

Get a Word from a Pointer in C++

By Lakshya Narain

In this tutorial, we will understand how to get a word from a pointer in C++. Given a string or a character, it is possible to return the whole word. Word is a string which is an a.... Read More

How to refresh or reload a webpage in selenium Python

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to refresh or reload a webpage in selenium Python. Today I’m helping you with how to reload a webpage that is already o.... Read More

Check if a number is divisible by a number in Python

By Rudresh

In this tutorial, we will learn how to check if the number is divisible by a number in Python. With the basic knowledge of operators in Python, it is quite easy to check the divisi.... Read More

Related Posts