Answers for "get first 2 characters of string python"

4

string pick the first 2 characters python

t = "your string"
t[:2]
Posted by: Guest on January-28-2021
10

python get first character of string

string = 'This is a string'
print(string[0])
#output: 'T'
Posted by: Guest on April-18-2020

Code answers related to "get first 2 characters of string python"

Python Answers by Framework

Browse Popular Code Answers by Language