evidenttutorials.com
Home Django HTML JavaScript jQuery PHP Python Server SQL
Page 1 of 2. Next Last
September 02, 2024

Python String Compare

Comparison of two strings in Python is very easy task. Like integer values you can also compare string objects with the help of equal to operator (==) inside of if conditional statement.

Read more... 
September 02, 2024

Python String Concatenation

In Python you can do string concatenation through + operator. + operator is a concatenation operator for string values and it also an addition operator for numeric values.

Read more... 
September 02, 2024

Python String Length

Length is a property of a string. Through len function you can get the length of a string that means you can count the number of characters, of a particular string. If you want to count total characters of a string then you will have to pass your string as a parameter to len function which is built in Python function.

Read more... 
August 17, 2024

Python string replacement with replace() function

You can replace a character, a word or even a string from a string through replace function in Python. replace function required two string parameters to make replacement on the string first parameter old string which you want to replace and second parameter is new string with you want to replace old string.

Read more... 
August 17, 2024

Python split function

split() function is one of the most important Python’s built in function of string manipulation. Sometimes it happens that you want to convert a string's element into an array so for the same you can use split() function in Python.

Read more... 
August 17, 2024

Change string in uppercase with upper function

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

Read more... 
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... 
Page 1 of 2. Next Last

Latest Posts

You can find latest posts below:

Set and Get variables in Django session How to run a Django project? How to create a new Django project? How to create a new Django app? What does collectstatic command do in Django?
About Us Privacy Policy Disclaimer