As you have read the title, this tutorial is all about checking the version of Django. You might be wondering what version of Django you are using right now, you might be stuck som.... Read More
In this tutorial, we will be learning how to create an API in Django using REST framework. API API stands for Application Program Interface. It is a collection of software function.... Read More
In this tutorial, we will learn about the process by which we can truncate a float in Python. In python, we can truncate float to certain decimal places and can also truncate to no.... Read More
Hello readers! In this tutorial, we are going to learn how to set a string null in C++. Let’s have a look at how we can do this. We can do this using the std::string::clear.... Read More
Hello folks! In this tutorial, we are going to learn how we can return a null vector in C++. Before going deep into the topic let’s understand what are null vectors. Null Vec.... Read More
In this tutorial, we will discuss an easy way using which you can remove empty elements from a vector in C++. So let’s get started. 1) Including header file:- Before s.... Read More
In this tutorial, we will learn how to take input from users and save that in a .txt file in C++. While writing this program we use fstream and create a txt file named new file and.... Read More
In this tutorial, we will learn how to shorten a URL in C++. URL shortening is used to create a unique shorter alternative for long URLs. These save a lot of space while storing, d.... Read More