Answers for "first 4 characters string python"

7

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
0

python first three characters of string

string = "Hello world"
string[:3] # -> Hel
Posted by: Guest on February-28-2022

Code answers related to "first 4 characters string python"

Python Answers by Framework

Browse Popular Code Answers by Language