English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

Write a note about count( ) function in python. - Computer Science

Advertisements
Advertisements

Question

Write a note about count( ) function in python.

Answer in Brief

Solution

Function: count()
Syntax: count (str, beg, end)

Description:

  • Returns the number of substrings occur within the given range.
  • Substring may be a single character.
  • Range (beg and end) arguments are optional. If it is not given, python searched in whole string.
  • Search is case-sensitive.

Example:

>>>strl=” Raja RajaChozhan >>> print(strl.count(/Raja’))
2
>>>print(strl.count(‘r’))
0
>>>print(strl.count(‘R’))
2
>>>prin(strl.count(‘a’))
5
>>>print (strl.count(‘a’,0.5))
2
>>>prin(strl.count(/a’,11))
1
shaalaa.com
Built-in String Functions
  Is there an error in this question or solution?
Chapter 8: Strings and String manipulation - Evaluation [Page 131]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 12 TN Board
Chapter 8 Strings and String manipulation
Evaluation | Q 5. | Page 131

RELATED QUESTIONS

Write a short about the following with suitable example: capitalize( )


Write a short about the following with suitable example: swapcase( )


Consider the following string mySubject:

mySubject = "Computer Science"

What will be the output of the following string operation:

print(mySubject.isalpha())


Consider the following string myAddress:

myAddress = "WZ-1, New Ganga Nagar, New Delhi"

What will be the output of the following string operation:

print(myAddress.count('New'))


Consider the following string myAddress:

myAddress = "WZ-1, New Ganga Nagar, New Delhi"

What will be the output of the following string operation:

print(myAddress.find('New'))


Consider the following string myAddress:

myAddress = "WZ-1, New Ganga Nagar, New Delhi"

What will be the output of the following string operation:

print(myAddress.rfind('New'))


Consider the following string myAddress:

myAddress = "WZ-1, New Ganga Nagar, New Delhi"

What will be the output of the following string operation:

print(myAddress.split(','))


Consider the following string myAddress:

myAddress = "WZ-1, New Ganga Nagar, New Delhi"

What will be the output of the following string operation:

print(myAddress.split(' '))


Consider the following string myAddress:

myAddress = "WZ-1, New Ganga Nagar, New Delhi"

What will be the output of the following string operation:

print(myAddress.partition(','))


Write a user-defined function to convert a string with more than one word into a title case string where the string is passed as a parameter. (Title case means that the first letter of each word is capitalized).


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×