Posts by Aakanksha Thakar
Author Biographical Info: Not available
This tutorial will see how to remove the leading whitespaces from a string in Swift. The spaces at the beginning of the string only should be removed others should be kept the same.... Read More
This tutorial will see how to validate an email address in Swift. This is possible by taking an email address as a string and checking it with the regular expression of valid email.... Read More
This tutorial will see how to perform the modulo with negative numbers in Python. Modulo/Modular division is the operator in Python denoted by ‘%’. It gives you the rem.... Read More
This tutorial will see how to install win32com.client in Python. Using this you can access the windows 32 APIs from Python. From python version 3.9 onwards this library is preinsta.... Read More
This tutorial will see how to generate a random number in C++. To generate random numbers rand()function is used. This is a predefined function in the cstdlib library. It generates.... Read More
This tutorial will see how to insert a column into the Excel sheet using the Openpyxl library in Python. Using this library we can do multiple operations on an excel file. First, i.... Read More
This tutorial will see how to insert a row in a specific position into an Excel file using Openpyxl in Python. Openpyxl is a Python library using which we can perform operations on.... Read More
This tutorial will see how to filter array elements based on the if condition in Swift. Arrays are data structures that store the data but are of the same data type. They are of fi.... Read More