Posts by Aakanksha Thakar

Author Biographical Info: Not available

Remove leading whitespaces from a string in Swift

By Aakanksha Thakar

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

How to validate an email address in Swift

By Aakanksha Thakar

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

How to perform modulo with negative values in Python

By Aakanksha Thakar

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

How to install win32com.client in Python

By Aakanksha Thakar

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

How to generate a random number in C++

By Aakanksha Thakar

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

Insert a column to Excel using openpyxl in Python

By Aakanksha Thakar

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

Insert a row in specific position into Excel using openpyxl in Python

By Aakanksha Thakar

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

Filter array elements in swift based on if condition

By Aakanksha Thakar

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

Related Posts