हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा १२

What is slicing? - Computer Science

Advertisements
Advertisements

प्रश्न

What is slicing?

संक्षेप में उत्तर

उत्तर

String slicing:
A slice is a substring of the main string. A substring can be taken from the original string by using [ ] operator and index or subscript values. Thus, [ ] is also known as the slicing operator. Using the slice operator, we can slice one or more substrings from the main string.

The general format of slice operation:
str[start:end]
Where start is the beginning index and end is the last index value of a character in the string. Python takes the end value less than one from the actual index specified. For example, if you want to slice the first 4 characters from a string, you have to specify it as 0 to 5. Because python considers only the end value as n – 1.

Example:

slice a single character from a string

>>> str1=”THIRUKKURAL”
>>> print (str1[0])
T
shaalaa.com
String Operators
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 8: Strings and String manipulation - Evaluation [पृष्ठ १३०]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 12 TN Board
अध्याय 8 Strings and String manipulation
Evaluation | Q 5. | पृष्ठ १३०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×