How to Trim Space from a String in Python
Python provides three methods that can be used to trim whitespaces from the string object. In Python, you can use the .strip() method to remove...
How to Convert String to Integer in Python
In Python, you can use the built-in int() function to convert a string to an integer. In this tutorial, I’ll show you an examples how...
How to Convert Integer to String in Python
Introduction: In Python, data conversion is a frequent task, especially when dealing with different data types. Converting an integer to a string might seem straightforward,...
How to Convert Date and Time to String in Python
In different kind of analytics and programming lifecycle we need to format date and time object to String. By using the strftime() function, we can...
MS Excel CODE Function
Sometimes you may need to convert character or text data to ASCII code value in MS Excel. There is a function called CODE in MS...
MS SQL Server PADDING Function
Sometimes you may need to pad character in left or in right in MS SQL Server. There is no direct function in MS SQL Server...