Answers for "python get first 3 characters from string"

4

string pick the first 2 characters python

t = "your string"
t[:2]
Posted by: Guest on January-28-2021
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 get first 3 characters from string"

Python Answers by Framework

Browse Popular Code Answers by Language