str – POFTUT

How To Get Current Date Time with Now() Function In Python?

How To Get Current Date Time with Now() Function In Python?

Date and time is an important part of application development. We generally need to set, get, and change some data time information to our records. In this tutorial, we will examine the python date time now functions and use cases with examples. For more information about Python date-time functions can be get from the following … Read more

Python String Find Tutorial with Examples

Python provides a lot of string functions and functionalities. But finding string in a string or text is popular use case in the application developers. In this tutorial we will look different usage of find function of string type. Just Find We will use find function and provide the string we are searching for. As we know … Read more

How To Get Python String Length?

We programmers generally use string data in our applications. While using the string data one of the most used operation is getting the size or length of the string. In this tutorial we will look different methods to get the length of the string. Using Len Function Python have build in function named len which will … Read more

How To Convert List To String in Python?

Python provides different variable types for programmers’ usage. We can use int, float, string, list, set … data types in our applications. While using different types of variables we may need to convert them to different types. In this tutorial, we will different types of conversion from the list to string in Python. Convert Using … Read more

Python JSON Encoder and Decoder Tutorial with Examples

JSON or Javascript Object Notations is a RFC standard which is used to define complex data types with number 7159.  JSON became very popular in recent years because of its compatibility and simplicity. Python have rich support web applications and popular framework Django is developed with python too. So we generally need to use JSON with … Read more