Important Notice:

Course Content
Strings in Python (Chapter-6) M3-R5
About Lesson
String Function:-

          String के कुछ built-in function होता है जो निम्न हैं-

len()

capitalize()

find()

isalnum()

isalpha()

isdigit()

lower()

islower()

isupper()

upper()

istrip()

rstrip()

isspace()

istitle()

replace(old,new)

split()

join()

swapcase()

count()

str()

 

 

1. len():- इस function का use string में character की संख्या पता करने के लिए करते हैं।

Example:-        a= “apple”             print(len(a))           #        5

2. capitalize():- इस function का use string के पहले character को capital करने के लिए किया जाता है। 

Example:-        a=”ak it solution”  print(a.capitalize())           # Ak it solution

3. find():- इस function का use किसी string में से किसी sub string को find करने का कार्य करता है। यह function find की गयी string को index number बताता है। यदि string में कुछ नही मिलता है तो यह -1 return करता है।

syntax:-       find(find_string, starting position, end position)

a=”ak it solution”                     print(a.find(“ti”))            # 10

4. isalnum():- इस function का use string में letters और digit को check करने के लिए किया जाता है। इसका result true & false में आता है।

a=’akhilesh123′                     print(a.isalnum())       # True

5. isalpha():- इस function का use केवल letters को check करने के लिए किया जाता है।

a=’akhilesh’                   print(a.isalpha())       # True

 

String Function:-

          String has some built-in functions which are as follows-

len()

capitalize()

find()

isalnum()

isalpha()

isdigit()

lower()

islower()

isupper()

upper()

istrip()

rstrip()

isspace()

istitle()

replace(old,new)

split()

join()

swapcase()

count()

str()

index()

 

1. len():- This function is used to find the number of characters in a string.

Example:-        a= “apple”             print(len(a))           #        5

2. capitalize():- This function is used to capitalize the first character of the string.

Example:-        a=”ak it solution”  print(a.capitalize())           # Ak it solution

3. find():-This function is used to find any sub string from a string. This function assigns the index number to the found string. If nothing is found in the string then it returns –

syntax:-       find(find_string, starting position, end position)

a=”ak it solution”                     print(a.find(“ti”))            # 10

4. isalnum():-This function is used to check letters and digits in the string. Its result comes in true & false.

a=’akhilesh123′                     print(a.isalnum())       # True

5. isalpha():-This function is used only to check letters.

a=’akhilesh’                   print(a.isalpha())       # True

error: Content is protected !!