Author: Arpit Mandliya
- 02 November
Print without Parentheses in Python
How to Print without Parentheses in Python The upgrade of Python 2 to 3 introduced several critical changes to the existing Python functionality. One such change was done to the print statement. In Python 2, we used print as a statement. We have seen people stating to use parentheses with print in Python 3. This […]
- 02 November
Count Decimal Places in C++
In this post, we will see how to count decimal places in C++. Accuracy V/S Precision in Counting Decimal Places in C++ Programs A major challenge that comes with counting decimal places is that the program can either give a solution that is accurate or precise. An accurate solution is considered to be closest to […]
- 02 November
Check if a String Is Empty in C++
1. Introduction to the Problem Statement In C++ programming, checking whether a string is empty is a common and straightforward task but essential in many contexts, such as input validation, data processing, and conditional logic. Our Goal: To determine if a given string, such as "Hello" or "", is empty. Expected Output: A boolean value […]
- 27 October
Add Spaces Between Characters in Python
A string is the generic data type that is offered by Python to store and represent a series of Unicode characters. There might be a need to add a space between all characters of a given string. This tutorial focuses on and demonstrates the different ways available to add spaces between characters in Python. The […]
- 26 October
Add Commas to String in Python
A string is capable of holding both numeric characters and letters of the alphabet. There may sometimes be a need to add commas to relevant spaces in a string containing numerical values in order to represent the number according to the specified currency system. This tutorial focuses on and demonstrates the different ways available to […]
- 26 October
Tips to Pass the AWS DevOps Certification in 2022
Before enrolling in an AWS DevOps Certification training program or exam, you should research the credential. The AWS DevOps Certification is a great way to boost your IT career, and when most people think of AWS- the first thing that comes to mind is the certification. It covers all areas a developer needs to get […]
- 26 October
Get Number of Business Days Between Two Dates in Python
Python provides the datetime object to store and work with date and time values. These objects are compatible with various libraries and can be manipulated using different functions from such libraries. One such operation is getting all the dates between a given range. This can be done in different ways as well using various functions. […]
- 25 October
[Fixed] Unsupported Class File Major Version 61 in Java
1. Introduction Java developers often face the challenge of compatibility issues, such as the unsupported class file major version 61" error. This problem arises when a Java program, compiled with Java 17 (denoted by major version 61), is run on a Java version that’s older than Java 17. This guide is crafted to be beginner-friendly […]
- 25 October
Get First Day of Month in Python
The datetime objects defined in the datetime library provide a convenient way to store date and time values. Other libraries like dateutil also provide extended functionalities that can be used with such objects. In this tutorial, we will discuss how to get first day of month in Python. Get First Day of Month in Python […]