evidenttutorials.com
Home CodeIgniter Django Go HTML JavaScript jQuery PHP Python Server SQL
First Previous Page 2 of 2.
August 17, 2024

Change string in lowercase with lower function

You can convert a string into lower case (all letters in small letters) with using of lower function. The example of lower method is mentioned below:

Read more... 
August 17, 2024

Python find function for string search

You can search a character or even a string from a string through find function in Python. find function required one string parameter which you want to search.

Read more... 
August 17, 2024

Python join() function

join() function is one of the most important Python's built in function of an iterable. Sometimes it happened that you want to convert an iterable's elements into a string so for the same you can use join function in Python. implode function requires array/iterable as argument to join into an string. It is called on an separator string.

Read more... 
August 17, 2024

Python removing extra spaces or characters using strip() function

Some times it happens you want to remove spaces or any other character from the right and left side from a string. So you can easily do that with using strip function. we called strip function on a string object and it requires one argument which is character which you want to remove.

Read more... 
August 17, 2024

Python Comment

If you want to write some notes in your Python code file which you do not want to be execute in Python but want to include in your Python code file for better understanding your code. So for it you can create comments in Python.

Read more... 
First Previous Page 2 of 2.

Latest Posts

You can find latest posts below:

How to load model class in CodeIgniter? What are models in CodeIgniter What are views in CodeIgniter What are controllers in CodeIgniter Explain MVC architecture in CodeIgniter
About Us Privacy Policy Disclaimer