Given a string and number of characters (N), we have to slice and print the starting N characters from the given string using python program.
SLICING:
Slicing can be defined as selecting specific characters of a string. This can be performed easily by knowing the length of a string also if the length is not specified initially we can do it by selecting the number of characters that we require.
Now let's understand slicing with a simple example,
Question:
We are provided with a string such that the first N characters are the front characters of the string. If the provided string length is less than N, the front is whatever we have got. Now your task is to create a new string such that it contains only the N characters from the front.
Example:
slice('Javan', 3) = 'Jav'
slice('Chocolava', 5) = 'Choco'
slice('jio', 6) = 'jio'
Here we have considered N as a number of the front end. Here as the length of the string is not mentioned initially so here we have done slicing by considering a specific number of characters.
Code:
Output
need an explanation for this answer? contact us directly to get an explanation for this answer