String Function
6. isdigit():-इस function का use केवल digit को check करने के लिए किया जाता है।
a=’123′ print(a.isdigit()) # True
7. lower():- इस function का use upper case string को lower case string में convert करने के लिए किया जाता है।
a=’AKHILESH’ print(a.lower()) # akhilesh
8. islower():-इस function का use lower case string को check करने के लिए किया जाता है।
a=’AKHILESH’ print(a.islower()) # False
9. isupper():- इस function का use upper case string को check करने के लिए किया जाता है।
a=’AKHILESH’ print(a.isupper()) # True
10. upper():- इस function का use lower case string को upper case string में convert करने के लिए किया जाता है।
a=’akhilesh’ print(a.upper()) # AKHILESH
11. lstrip():- इस function का use किसी string से left side (with space) से character को remove करने के लिए किया जाता है।
a=’AKHILESH’ print(a.lstrip(‘A’)) # KHILESH
12. rstrip():- इस function का use किसी string से right side से character को remove करने के लिए किया जाता है।
a=’AKHILESH’ print(a.rstrip(‘H’)) #AKHILES
13. isspace():- इस function का use space check करने के लिए किया जाता है। string में अगर एक भी character होगा तो इसका रिजल्ट false होगा।
a=’ ‘ print(a.isspace()) # True
String Function
6. isdigit():-This function is used only to check the digit.
a=’123′ print(a.isdigit()) # True
7. lower():-This function is used to convert upper case string to lower case string.
a=’AKHILESH’ print(a.lower()) # akhilesh
8. islower():-This function is used to check lower case string.
a=’AKHILESH’ print(a.islower()) # False
9. isupper():-This function is used to check upper case string.
a=’AKHILESH’ print(a.isupper()) # True
10. upper():- This function is used to convert lower case string into upper case string.
a=’akhilesh’ print(a.upper()) # AKHILESH
11. lstrip():-This function is used to remove the character from the left side (with space) from a string.
a=’AKHILESH’ print(a.lstrip(‘A’)) # KHILESH
12. rstrip():-This function is used to remove the character from the right side of a string.
a=’AKHILESH’ print(a.rstrip(‘H’)) #AKHILES
13. isspace():- This function is used to check space. If there is even one character in the string then its result will be false.
a=’ ‘ print(a.isspace()) # True