How to get UTC time in Python

By Manam Sampath Kumar Reddy

In this tutorial, we will learn how to get UTC timezone time in Python. we will use datetime library of Python. From this library,  we use the pytz module to fetch UTC time. datet.... Read More

How to get current time in seconds in Python

By Harish Mullagura

In this tutorial, we will discuss how to get the current time in seconds in Python. In Python, there are many ways to get the current time. One such way is Time module. Time module.... Read More

How to use Random shuffle() Method in Python

By Harish Mullagura

In this tutorial, we will discuss how to use Random shuffle() Method in Python. shuffle method is used for changing the position of elements in the list. shuffle() is an inbuilt fu.... Read More

Visualization of Superhero Characters using Python

By Kanduri Jayanth Sri Ram

In this tutorial, you will learn how to visualize the superhero characters. Visualization of Superhero Characters in Python Steps involved: Loading packages Understanding the data .... Read More

How to delete a table from Oracle Database in Python

By Shubhodh Amaravadi

Hello Geek! we have already learned how to create tables, insert data and fetch data from the Oracle Database table using Python. In this tutorial, we will see how to delete a tabl.... Read More

Vector pop_back() in C++ with examples

By Rakesh

This tutorial will discuss how the method vector:: pop_back() in C++ is going to work. Vectors in C++ STL are similar to dynamic arrays which have a variable size. The storage in v.... Read More

How to find the Nth XOR Fibonacci number in C++

By Tanmaay Kankaria

In this article, given three numbers a, b and n, where a and b are the first two terms of the XOR Fibonacci series, we have to find the nth term. The Nth term of the XOR Fib.... Read More

How to remove the last element from an array in C++

By Tanmaay Kankaria

In this article, we are going to learn how to remove the last element from an array in C++. To delete the last element from an array we first get the array size and the array eleme.... Read More