String Function
14. istitle():- इस function का use string में title case check करने के लिए किया जाता है।
a=’Ak It Solution’ print(a.istitle()) # True
15. replace(old,new):- इस function का use किसी string के substring को replace करने के लिए किया जाता है।
a=’Ak It Solution’ print(a.replace(‘Ak’,’uma’)) # uma It Solution
16. split():- यह function किसी string को split करके substring list में return करने के लिए किया जाता है।
a=’Ak It Solution’ print(a.split()) # [‘Ak’, ‘It’, ‘Solution’]
17. join():- इस function का use अलग-अगल word को single string में जोड़ने के लिए किया जाता है।
a=(‘ram’,’ramesh’,’suresh’)
b=”/”
print(b.join(a))
#ram/ramesh/suresh
18. swapcase():- इस function का use lowercase letter से uppercase letter में तथा uppercase letter से lowercase letter में convert करने के लिए किया जाता है।
a=”akhilesh” print(a.swapcase()) # AKHILESH
19. count():- इस function का use किसी string में substring की संख्या को count करने के लिए किया जाता है।
a=”ak it solution” print(a.count(‘ak’)) # 1
20. index():- यह function किसी string के अन्दर किसी letter के first occurrence को बताता है यदि value नहीं मिलता है तो इंडेक्स() method एक exception बताती है
a=”akhilesh” b=a.index(‘h’) print(b) # 2
String Function
14. istitle():- This function is used to check title case in a string.
a=’Ak It Solution’ print(a.istitle()) # True
15. replace(old,new):- This function is used to replace the substring of a string.
a=’Ak It Solution’ print(a.replace(‘Ak’,’uma’)) # uma It Solution
16. split():- This function is used to split a string and return it in a substring list.
a=’Ak It Solution’ print(a.split()) # [‘Ak’, ‘It’, ‘Solution’]
17. join():- This function is used to combine different words into a single string.
a=(‘ram’,’ramesh’,’suresh’)
b=”/”
print(b.join(a)) #ram/ramesh/suresh
18. swapcase():-This function is used to convert from lowercase letter to uppercase letter and from uppercase letter to lowercase letter.
a=”akhilesh” print(a.swapcase()) # AKHILESH
19. count():-This function is used to count the number of substrings in a string.
a=”ak it solution” print(a.count(‘ak’)) # 1
20. index():-The index() method finds the first occurrence of the specified value. The index() method raises an exception if the value is not found.
Syntax:- string.index(value, start, end)
a=”akhilesh” b=a.index(‘h’) print(b) # 2