Posts by Sanam Sahoo

Author Biographical Info: Not available

Get sorted file names from a directory by creation date in Python

By Sanam Sahoo

Hello, Coders!! In this Python tutorial, we will learn how to get a sorted list of filenames of a directory or folder based on the creation date and time in Python. Let’s dis.... Read More

How to pass an array to a function in Python

By Sanam Sahoo

Hello, Coders!! In this Python tutorial, we will learn how we can pass an array to a function in Python. In Python, any type of data can be passed as an argument like string, list,.... Read More

Slice Notation on List in Python

By Sanam Sahoo

Hello, Coders!! In this Python tutorial, we will learn about the slice notation on a list in a Python program. Before diving into the main topic, let’s discuss some basic con.... Read More

How to sort vector in descending order in C++

By Sanam Sahoo

Hello, Coders!! In this section, we will learn how to sort a vector in descending order in C++. Let’s discuss the methods, we can sort the vector: Using sort() function Using.... Read More

Actual purpose of int& foo() in C++

By Sanam Sahoo

Hello, Coders!! In this section, we will discuss the actual purpose of int& foo() in a C++ program. int& foo() in C++ In C++ int& foo() declares a function having a fun.... Read More

#include vs #include “filename” in C++

By Sanam Sahoo

Hello, Coders!! In this section, we will discuss the difference between #include <filename> and #include “filename” in a C++ program. Let’s understand what .... Read More

Change date format in C++

By Sanam Sahoo

Hello, Coders! In this section, we will learn about various date formats and how to change them in C++. Date Formats Type There are various types of date formats that we can use in.... Read More

How to run a Python file in Linux – Step by Step Guide

By Sanam Sahoo

The Python file is a program file or script written in Python language. It can be created as well as edited with any text editor. In this tutorial, we will learn how we can run tho.... Read More

Related Posts