Answers for "how to get first 2 characters from string in python"

4

string pick the first 2 characters python

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

Code answers related to "how to get first 2 characters from string in python"

Python Answers by Framework

Browse Popular Code Answers by Language