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...
How to Get the Current Date and Time in Python
In python, we can get the current date and time using the datetime object. In the datetime module, the now() function gives us the current...
How to Format Date Time Data Object in Python
In this tutorial, I will show how to format date time data object in Python. The following table contains the most commonly used Python strftime()...
How to Get Sum of Series 1-1/2+1/3-1/4+….1/n in C Program
It is easy to get sum of series 1 – 1/2 + 1/3 – 1/4 + . . . 1/n in C program. In this...
How to Get Sum of Series 1-2+3-4+…. +n in C Program
It is easy to get sum of series 1 – 2 + 3 – 4 + . . . + n in C program. In...
How to Get Sum of Series 2+4+6+8+…. +n in C Program
It is easy to get sum of series 2 + 4 + 6 + 8 + . . . + n in C program. In...