Answers for "python keep first n characters of string"

7

parse first characters from string python

# Get First 3 character of a string in python
first_chars = sample_str[0:3] 
print('First 3 characters: ', first_chars)

# Output:
First 3 characters: Hel
Posted by: Guest on May-22-2020
4

get first x characters of string python

characters = 4
string = "This is a string"
print(string[:characters])
#output: 'This'
Posted by: Guest on June-24-2021

Code answers related to "python keep first n characters of string"

Python Answers by Framework

Browse Popular Code Answers by Language