Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to get a specific character in a string on number python

# An example text
text = "This is text"
# print the [0] first character of the sample text, 
#			[4] fifth character,
#			[0: 4] first to fifth character,
#			[-1] last character.
print(tekst[0], tekst[4], tekst[0:4], tekst[-1])
 
PREVIOUS NEXT
Tagged: #specific #character #string #number #python
ADD COMMENT
Topic
Name
2+2 =