Server Side Programming Articles - Page 1913 of 2646

String to Integer (atoi) in C++

Arnab Chakraborty
Updated on 27-Apr-2020 11:33:17

756 Views

Suppose we have to design a module, that first discards as many whitespace characters as necessary until the first non-whitespace character is reached. After that, starting from this character, it takes an optional initial plus sign or minus sign followed by as many numerical digits, and interprets them as a numerical value.When the first sequence of non-whitespace characters in str is not a valid integral number, or when no such sequence exists because either str is empty or it contains only whitespaces, no conversion will be performed.So if the input is like “-45”, the output will be -45.To solve this, ... Read More

ZigZag Conversion in C++

Arnab Chakraborty
Updated on 27-Apr-2020 11:25:10

1K+ Views

Suppose the string is like " IWANTTOLEARNCODE". This string is written in a zigzag way on a given number of rows say n. So the pattern is looking like thisITAOWNOERCDALNEWhen we read the line like − "ITAOWNOERCDALNE"So we have to create one module that can perform this kind of operation by taking the string and the number of rows.To solve this, we will follow these stepswhen n = 1, then return screate an array of strings arr of size nrow := 0, and down := truefor i in range 0 to size of string – 1insert s[i] at the end ... Read More

Argument of an Exception in Python

Mohd Mohtashim
Updated on 30-Jan-2020 06:59:44

5K+ Views

An exception can have an argument, which is a value that gives additional information about the problem. The contents of the argument vary by exception. You capture an exception's argument by supplying a variable in the except clause as follows −try:    You do your operations here;    ...................... except ExceptionType, Argument:    You can print value of Argument here...If you write the code to handle a single exception, you can have a variable follow the name of the exception in the except statement. If you are trapping multiple exceptions, you can have a variable follow the tuple of the exception.This ... Read More

Longest Palindromic Substring in Python

Arnab Chakraborty
Updated on 27-Apr-2020 11:19:01

11K+ Views

Suppose we have a string S. We have to find the longest palindromic substring in S. We are assuming that the length of the string S is 1000. So if the string is “BABAC”, then the longest palindromic substring is “BAB”.To solve this, we will follow these stepsDefine one square matrix of order same as the length of string, and fill it with FalseSet the major diagonal elements as true, so DP[i, i] = True for all i from 0 to order – 1start := 0for l in range 2 to length of S + 1for i in range 0 ... Read More

The try-finally Clause in Python

Mohd Mohtashim
Updated on 30-Jan-2020 06:58:31

2K+ Views

You can use a finally: block along with a try: block. The finally block is a place to put any code that must execute, whether the try-block raised an exception or not. The syntax of the try-finally statement is this −try:    You do your operations here;    ......................    Due to any exception, this may be skipped. finally:    This would always be executed.    ......................You cannot use else clause as well along with a finally clause.Example Live Demo#!/usr/bin/python try:    fh = open("testfile", "w")    fh.write("This is my test file for exception handling!!") finally:    print "Error: can\'t find file or read ... Read More

Longest Substring Without Repeating Characters in Python

SaiKrishna Tavva
Updated on 13-Nov-2024 14:25:57

7K+ Views

In Python, by using different methods we can find the longest substring without repeating characters, such as by using the Brute force approach which involves checking all the Substrings, and also by using the advanced Sliding window Two Pointer approach, which uses a Hashmap to store the indexes. Some Common Methods Some of the common approaches in Python to find the longest Substring Without Repeating Characters are as follows. Brute Force: Checks all possible substrings and verifies if they have all unique characters in the string. Sliding Window with Set: This approach tracks characters in the current substring ... Read More

Assertions in Python

Mohd Mohtashim
Updated on 30-Jan-2020 06:53:51

329 Views

An assertion is a sanity-check that you can turn on or turn off when you are done with your testing of the program.The easiest way to think of an assertion is to liken it to a raise-if statement (or to be more accurate, a raise-if-not statement). An expression is tested, and if the result comes up false, an exception is raised.Assertions are carried out by the assert statement, the newest keyword to Python, introduced in version 1.5.Programmers often place assertions at the start of a function to check for valid input, and after a function call to check for valid ... Read More

Add Two Numbers in Python

gireesha Devara
Updated on 20-Jun-2025 19:37:53

3K+ Views

Adding two numbers in Python is one of the most basic tasks, where we need to combine their values to get a total. In this article, we will see different ways to add two numbers in Python. Using Arithmetic Operator To add two numerical values in Python, we can use the addition operation, represented by the "+" symbol. It is one of the arithmetic operators in Python that performs the addition operation. Example Here is the basic example that adds the two numbers using the addition operator (+). # Assign values to the variables a = 7 b = ... Read More

Locating File Positions in Python

gireesha Devara
Updated on 01-Sep-2025 11:44:37

1K+ Views

Locating file positions in Python means identifying the current position of the file pointer within an open file. Python provides the tell() and seek() methods of the file object for this task. Locating the File Position The tell() method tells you the current position within the file. In other words, it specifies that the next read or write will occur at that many bytes from the beginning of the file. Example The following example shows how to get the current file position using the tell() method. Initially, when a file is opened, the pointer is placed at the beginning. After ... Read More

Reading and Writing Files in Python

gireesha Devara
Updated on 01-Sep-2025 11:41:08

19K+ Views

Reading data from a file and writing to a file can be easily done in Python by using the file object. The file object in Python provides a set of methods for handling files. These methods make our lives easier for interacting with files on our computer. Below, we will see how to read and write files in Python using the read() and write() methods. The write() Method The write() method writes any string to an opened file. It is important to note that Python strings can have binary data and not just text. This method does not add a ... Read More

Advertisements